From 478ce7035ab7af733a0390b242affb656539f16d Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Fri, 20 Apr 2018 13:31:10 +0200 Subject: Start tracking system configuration --- pkgs/vim/custom.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/vim/custom.nix (limited to 'pkgs/vim/custom.nix') diff --git a/pkgs/vim/custom.nix b/pkgs/vim/custom.nix new file mode 100644 index 0000000..32700f6 --- /dev/null +++ b/pkgs/vim/custom.nix @@ -0,0 +1,26 @@ +{ pkgs }: + +let + vimrc = builtins.readFile ./conf/rc.vim; + plugins = pkgs.callPackage ./plugins.nix {}; +in +{ + vam = { + knownPlugins = pkgs.vimPlugins // plugins; + pluginDictionaries = [ + { names = [ + "ctrlp" + "undotree" + "vim-gitgutter" + "goyo" + "vim-localvimrc" + "tagbar" + "vim-addon-nix" + "vim-autoformat" + "vim-csexact" + "vim-color-akr" + ];} + ]; + }; + customRC = vimrc; +} -- cgit v1.2.3