flake
This commit is contained in:
parent
b3e35a643c
commit
ec607d7c2d
2 changed files with 8 additions and 6 deletions
4
_zshrc
4
_zshrc
|
@ -30,8 +30,8 @@ function zle-keymap-select {
|
||||||
}
|
}
|
||||||
zle -N zle-keymap-select
|
zle -N zle-keymap-select
|
||||||
|
|
||||||
[ -f "$HOME/.bashrc" ] && emulate sh -c "source $HOME/.bashrc"
|
[ -f "$HOME/.bashrc" ] && emulate bash -c "source $HOME/.bashrc"
|
||||||
[ -f "$HOME/./config/bashrc" ] && emulate sh -c "source $HOME/./config/bashrc"
|
[ -f "$HOME/./config/bashrc" ] && emulate bash -c "source $HOME/./config/bashrc"
|
||||||
|
|
||||||
[ -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-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"
|
[ -f "/usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh" ] && source "/usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh"
|
||||||
|
|
10
flake.nix
10
flake.nix
|
@ -33,7 +33,6 @@
|
||||||
userEmail = "osh@oshgnacknak.de";
|
userEmail = "osh@oshgnacknak.de";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = neovim-nightly-overlay.packages.${pkgs.system}.default;
|
package = neovim-nightly-overlay.packages.${pkgs.system}.default;
|
||||||
|
@ -43,9 +42,12 @@
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
programs.bash.initExtra = ''
|
programs.bash = {
|
||||||
exec zsh
|
enable = true;
|
||||||
'';
|
initExtra = ''
|
||||||
|
exec zsh
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue