1
0
Fork 0

home-manager: move neovim related pkgs under packages.neovim.extraPackages

This commit is contained in:
Pratham Patel 2024-02-07 20:38:19 +05:30
parent e0a0d480f7
commit 77a477f9d2
Signed by: thefossguy
SSH Key Fingerprint: SHA256:/B3wAg7jnMEBQ2JwkebbS/eXVZANDmqRfnd9QkIhxMI
1 changed files with 14 additions and 8 deletions

View File

@ -34,15 +34,8 @@
zstd
b4
gcc # for neovim [plugins]
rustup
clang-tools
lldb
ruff
shellcheck
tree-sitter
btop
htop
iperf
@ -85,7 +78,20 @@
enableBashIntegration = true;
nix-direnv.enable = true;
};
neovim.enable = true;
neovim = {
enable = true;
extraPackages = with pkgs; [
clang-tools # provides clangd
gcc # for nvim-tree's parsers
lldb # provides lldb-vscode
lua-language-server
nil # language server for Nix
nodePackages.bash-language-server
ruff
shellcheck
tree-sitter # otherwise nvim complains that the binary 'tree-sitter' is not found
];
};
};
nix = {