Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created June 16, 2015 14:03
Show Gist options
  • Select an option

  • Save codedmart/dd88542220f6ee87f213 to your computer and use it in GitHub Desktop.

Select an option

Save codedmart/dd88542220f6ee87f213 to your computer and use it in GitHub Desktop.
neoVimEnv = with self.pkgs; buildEnv {
name = "neovim-env";
paths = [
(neovim.override {
configure = {
customRC = ''
source $HOME/.nvimrc
'';
vam.pluginDictionaries = [
{ names = [ "YouCompleteMe" "UltiSnips" ]; }
];
};
})
];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment