Skip to content

Instantly share code, notes, and snippets.

@jagajaga
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jagajaga/de4df8e6ab4dffe12590 to your computer and use it in GitHub Desktop.
Save jagajaga/de4df8e6ab4dffe12590 to your computer and use it in GitHub Desktop.
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