Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created June 16, 2015 15:35
Show Gist options
  • Select an option

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

Select an option

Save codedmart/77147c937b8e49171b21 to your computer and use it in GitHub Desktop.
myVim = self.vim_configurable.customize {
name = "vim";
vimrcConfig = {
customRC = ''
source $HOME/.vimrc
'';
vam.pluginDictionaries = [
{ names = [ "YouCompleteMe" "UltiSnips" ]; }
];
};
}.stdenv.lib.overrideDerivation self.vimNox (oldAttrs: {
name = "vim_configurable-7.4.712";
src = self.fetchurl {
url = "http://mirrors.kernel.org/debian/pool/main/v/vim/vim_7.4.712.orig.tar.gz";
sha256 = "0p5mcr5402d3vxy3wv5q6qbhd23b4kzffifgkz90bil2csgvld5k";
};
patches = [
./vimNox/python_framework_new.patch
];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment