flake
This commit is contained in:
parent
b5dae6eb3f
commit
83842f1759
1 changed files with 27 additions and 1 deletions
28
flake.nix
28
flake.nix
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue