Last active
August 29, 2015 14:08
-
-
Save jagajaga/de4df8e6ab4dffe12590 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
th pkgs; | |
let | |
vimrcConfig = { | |
# If you like VAM use such: | |
vam.knownPlugins = vimPlugins; # optional | |
vam.pluginDictionaries = [ | |
# load always | |
{name = "youcompleteme";} | |
]; | |
# add custom .vimrc lines like this: | |
customRC = '' | |
set hidden | |
''; | |
}; | |
in | |
pkgs : { | |
allowUnfree = true; | |
allowBroken = true; | |
packageOverrides = self : rec { | |
vvEnv = seld.buildEnv | |
{ | |
name = "vv-env"; | |
paths = with self; | |
[vim_configurable.customize { name = "vim-with-plugins"; inherit vimrcConfig; }]; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment