This commit is contained in:
Oshgnacknak 2025-09-06 23:33:18 +02:00
parent b5dae6eb3f
commit 83842f1759
Signed by: Oshgnacknak
GPG key ID: 8CB7375654585956

View file

@ -36,6 +36,32 @@
programs.neovim = { programs.neovim = {
enable = true; enable = true;
package = neovim-nightly-overlay.packages.${pkgs.system}.default; package = neovim-nightly-overlay.packages.${pkgs.system}.default;
viAlias = true;
vimAlias = true;
};
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
initExtra = ''
[ -f "$HOME/.bashrc" ] && emulate sh -c "source $HOME/.bashrc"
'';
zplug = {
enable = true;
plugins = [
{ name = "zsh-users/zsh-autosuggestions"; }
];
};
};
programs.fzf = {
enable = true;
enableZshIntegration = true;
}; };
# Put extra packages in the *user* profile (not system) # Put extra packages in the *user* profile (not system)
@ -43,8 +69,8 @@
ripgrep ripgrep
fd fd
tmux tmux
neovim
xsel xsel
fzf
]; ];
# Example: link dotfiles without forcing overwrite # Example: link dotfiles without forcing overwrite