This commit is contained in:
Oshgnacknak 2025-09-07 01:48:47 +02:00
parent 6070598d72
commit bbd3d42bfd
Signed by: Oshgnacknak
GPG key ID: 8CB7375654585956
2 changed files with 2 additions and 12 deletions

5
_zshrc
View file

@ -30,11 +30,8 @@ function zle-keymap-select {
}
zle -N zle-keymap-select
if [ -f "$HOME/./config/bashrc" ]; then
emulate sh -c "source $HOME/./config/bashrc"
else
[ -f "$HOME/./config/bashrc" ] && emulate sh -c "source $HOME/./config/bashrc"
[ -f "$HOME/.bashrc" ] && emulate sh -c "source $HOME/.bashrc"
fi
[ -f "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" ] && source "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
[ -f "/usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh" ] && source "/usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh"

View file

@ -42,13 +42,6 @@
programs.home-manager.enable = true;
programs.bash = {
enable = true;
initExtra = ''
exec zsh
'';
};
programs.zsh = {
enable = true;