nixos/common/vim.nix
2024-11-06 14:03:40 +01:00

28 lines
No EOL
504 B
Nix
Executable file

{ pkgs, ...}:
{
programs.vim = {
enable = true;
extraConfig = import ./vimrc.nix;
plugins = with pkgs.vimPlugins; [
# specific language support
vim-nix
Coqtail
vimtex
# general plugins
nerdtree
fugitive
nerdtree-git-plugin
vim-lsp
vim-snippets
lightline-vim
vim-colorschemes
# CoC
coc-nvim
coc-git
coc-snippets
];
defaultEditor = true;
};
}