mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 16:36:53 +01:00
Add nvim
This commit is contained in:
parent
131eb177bc
commit
6eb65347a3
1 changed files with 20 additions and 0 deletions
|
@ -286,5 +286,25 @@ in {
|
|||
};
|
||||
};
|
||||
};
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
extraPackages = with pkgs; [
|
||||
clang-tools
|
||||
gcc
|
||||
gopls
|
||||
nixd
|
||||
nodePackages.bash-language-server
|
||||
nodePackages.vscode-langservers-extracted
|
||||
nodePackages.yaml-language-server
|
||||
python3Packages.python-lsp-server
|
||||
shellcheck
|
||||
];
|
||||
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
nvim-treesitter.withAllGrammars
|
||||
nvim-lspconfig
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue