diff options
-rw-r--r-- | lib/common.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/common.nix b/lib/common.nix index bb89efa..c81b97e 100644 --- a/lib/common.nix +++ b/lib/common.nix @@ -114,12 +114,12 @@ in vim = { enable = true; - plugins = [ - "ctrlp" - "fugitive" - "editorconfig-vim" - "surround" - "vim-colorschemes" + plugins = with pkgs.vimPlugins; [ + ctrlp + fugitive + editorconfig-vim + surround + vim-colorschemes ]; extraConfig = builtins.readFile ./vimrc; }; |