21 lines
386 B
Nix
21 lines
386 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.vim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
plugins = builtins.attrValues {
|
|
inherit (pkgs.vimPlugins)
|
|
vim-sensible
|
|
vim-fugitive
|
|
vim-eunuch
|
|
vim-endwise
|
|
vim-lsp
|
|
vim-lsp-settings
|
|
nerdtree
|
|
nerdtree-git-plugin
|
|
vim-devicons
|
|
editorconfig-vim
|
|
;
|
|
};
|
|
};
|
|
}
|