16 lines
197 B
Nix
16 lines
197 B
Nix
pkgs: {
|
|
enable = true;
|
|
vimAlias = true;
|
|
|
|
extraConfig = ''
|
|
set nowrap
|
|
'';
|
|
|
|
plugins = with pkgs.vimPlugins; [
|
|
vim-nix
|
|
|
|
indentLine
|
|
indent-blankline-nvim
|
|
neoformat
|
|
];
|
|
}
|