nixos-config/2configs/editor/vim.nix

24 lines
600 B
Nix
Raw Normal View History

2015-08-07 15:50:06 +02:00
{ config, pkgs, ... }:
{
2015-08-07 15:50:06 +02:00
environment.systemPackages = [
pkgs.python27Full # required for youcompleteme
(pkgs.vim_configurable.customize {
name = "vim";
2018-08-30 16:39:23 +02:00
vimrcConfig.customRC = builtins.readFile ./vimrc;
vimrcConfig.vam.knownPlugins = pkgs.vimPlugins;
2015-08-07 15:50:06 +02:00
vimrcConfig.vam.pluginDictionaries = [
{ names = [ "undotree"
2020-04-23 16:44:10 +02:00
"YouCompleteMe"
#"UltiSnips"
2015-08-07 15:50:06 +02:00
"vim-better-whitespace" ]; }
2017-09-29 21:33:50 +02:00
# vim-nix handles indentation better but does not perform sanity
2015-08-07 15:50:06 +02:00
{ names = [ "vim-addon-nix" ]; ft_regex = "^nix\$"; }
];
})
];
}