nixpkgs/pkgs/misc/vim-plugins/default.nix

3395 lines
109 KiB
Nix
Raw Normal View History

experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
# TODO check that no license information gets lost
{ config, lib, fetchurl, stdenv, python, git, go, cmake, vim, vimUtils, perl, ruby
, which, fetchgit, llvmPackages, rustPlatform
2018-03-03 15:39:16 +00:00
, xkb_switch, rustracerd, fzf, skim
2018-03-12 10:45:03 +00:00
, python3, boost, icu, ncurses
, ycmd, makeWrapper, rake
, pythonPackages, python3Packages
, substituteAll
, languagetool
, Cocoa, CoreFoundation, CoreServices
}:
let
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
2018-03-03 15:39:16 +00:00
_skim = skim;
inherit (vimUtils.override {inherit vim;}) rtpPath addRtp buildVimPlugin
buildVimPluginFrom2Nix vimHelpTags;
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
2015-06-01 10:14:47 +00:00
# TL;DR
# * Add your plugin to ./vim-plugin-names
# * sort -df ./vim-plugin-names > sorted && mv sorted vim-plugin-names
# * Regenerate via `nix-shell -I nixpkgs=/path/to/your/local/fork -p vimPlugins.pluginnames2nix --command "vim-plugin-names-to-nix +silent +'x! result'"`
# Note: pluginnames2nix will fetch any plugins in the file; to speed up the process,
# update ./vim-plugin-names to contain only plugins which need generation
# Copy the generated expression(s) into this file from the ./result file.
# If plugin is complicated then make changes to ./vim2nix/additional-nix-code
2015-06-01 10:14:47 +00:00
# This attrs contains two sections:
# The first contains plugins added manually, the second contains plugins
# generated by call nix#ExportPluginsForNix.
# Documentation & usage see vim-utils.nix.
# attribute names should be the same as used by vim-pi to make dependency
# resolution work
self = rec {
2015-06-01 10:14:47 +00:00
# This is not a plugin, it provides bin/vim-open-buffer-with-plugins-derivations
# which recreates this the following derivations based on ./vim-plugin-names
pluginnames2nix = vimUtils.pluginnames2Nix {
name = "vim-plugin-names-to-nix";
namefiles = [./vim-plugin-names];
};
2015-06-01 10:14:47 +00:00
# Section I
vim-addon-vim2nix = vim2nix;
vim2nix = buildVimPluginFrom2Nix { # use it to update plugins
name = "vim2nix";
src = ./vim2nix;
dependencies = ["vim-addon-manager"];
};
2015-06-01 10:14:47 +00:00
# Section II
# Update with vimUtils.vimPlugins.pluginnames2Nix command
2016-06-04 06:14:36 +00:00
fzfWrapper = buildVimPluginFrom2Nix {
name = fzf.name;
src = fzf.src;
dependencies = [];
};
2018-03-03 15:39:16 +00:00
skim = buildVimPluginFrom2Nix {
name = _skim.name;
src = _skim.vim;
dependencies = [];
};
LanguageClient-neovim = let
LanguageClient-neovim-src = fetchgit {
url = "https://github.com/autozimu/LanguageClient-neovim";
rev = "5015aa164dc9ad96a0f5fbadaf92a888d16bc0d9";
sha256 = "1b3916al2y4hxmmlhqxw4cdliyd42xahc7wmgm8yq1gbvzbhdafg";
};
LanguageClient-neovim-bin = rustPlatform.buildRustPackage {
name = "LanguageClient-neovim-bin";
src = LanguageClient-neovim-src;
cargoSha256 = "1vafyi650qdaq1f7fc8d4nzrv1i6iz28fs5z66hsnz4xkwb3qq9w";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
# FIXME: Use impure version of CoreFoundation because of missing symbols.
# Undefined symbols for architecture x86_64: "_CFURLResourceIsReachable"
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
export NIX_LDFLAGS="-F${CoreFoundation}/Library/Frameworks -framework CoreFoundation $NIX_LDFLAGS"
'';
};
in buildVimPluginFrom2Nix {
name = "LanguageClient-neovim-2018-06-12";
src = LanguageClient-neovim-src;
dependencies = [];
propogatedBuildInputs = [ LanguageClient-neovim-bin ];
preFixup = ''
substituteInPlace "$out"/share/vim-plugins/LanguageClient-neovim/autoload/LanguageClient.vim \
--replace "let l:path = s:root . '/bin/'" "let l:path = '${LanguageClient-neovim-bin}' . '/bin/'"
'';
};
2018-06-17 19:47:00 +00:00
# do not auto-update this one, as the name clashes with vim-snippets
vim-docbk-snippets = buildVimPluginFrom2Nix {
name = "vim-docbk-snippets-2017-11-02";
src = fetchgit {
url = "https://github.com/jhradilek/vim-snippets";
rev = "69cce66defdf131958f152ea7a7b26c21ca9d009";
sha256 = "1363b2fmv69axrl2hm74dmx51cqd8k7rk116890qllnapzw1zjgc";
};
dependencies = [];
};
# missing dependency, using additional-nix-code results in an invalid expression
vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimshell-vim-2018-06-02";
src = fetchgit {
url = "https://github.com/shougo/vimshell.vim";
rev = "03bf7673a5098918a533000d67dca97546695237";
sha256 = "1ckxjap9kz8skbjchg561sqyd5y5qwacg8mabmniy78qa7i3qdzi";
};
dependencies = [ "vimproc-vim" ];
};
# --- generated packages bellow this line ---
2018-04-17 18:40:51 +00:00
vim-auto-save = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-auto-save-2017-11-08";
2015-10-03 08:38:55 +00:00
src = fetchgit {
url = "https://github.com/907th/vim-auto-save";
rev = "66643afb55a1fcd3a9b4336f868f58da45bff397";
sha256 = "1qnsj520j2hm6znpqpdqmz11vw45avgj8g9djx3alqbnab8ryw0p";
2015-10-03 08:38:55 +00:00
};
dependencies = [];
};
vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-autoformat-2018-05-28";
2015-07-03 08:08:22 +00:00
src = fetchgit {
url = "https://github.com/Chiel92/vim-autoformat";
2018-06-17 19:47:00 +00:00
rev = "3c50ddb50635f7899b4339a64bc02333cdd24a4b";
sha256 = "1zw7b3zxgsmj149z238qx2palqysdywqgsxgj2z37kc8is8dpdpy";
2015-07-03 08:08:22 +00:00
};
dependencies = [];
};
ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-py-matcher-2017-11-01";
2018-01-16 15:37:04 +00:00
src = fetchgit {
url = "https://github.com/FelikZ/ctrlp-py-matcher";
rev = "cf63fd546f1e80dd4db3db96afbeaad301d21f13";
sha256 = "0hs829x3vxv12y78hz5g4a5qpw05xf42dk0hxxk3ind77mnl1ir1";
2018-01-16 15:37:04 +00:00
};
dependencies = [];
};
ctrlp-cmatcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-cmatcher-2015-10-15";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "https://github.com/JazzCore/ctrlp-cmatcher";
rev = "6c36334f106b6fd981d23e724e9a618734cab43a";
sha256 = "1573kd6xf3n8sxlz2j4zadai4rnc7k3s9c54648yfzickwn57d8q";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
buildInputs = [ python ];
buildPhase = ''
patchShebangs .
./install.sh
'';
2014-10-21 12:24:30 +00:00
};
2018-04-17 18:40:51 +00:00
julia-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "julia-vim-2018-07-01";
2018-04-17 18:40:51 +00:00
src = fetchgit {
url = "https://github.com/JuliaEditorSupport/julia-vim";
rev = "c49d4d39fa7f54387ec20b8bbf006700b1e01fe2";
sha256 = "14wib4768vi7681iclihlj94dlqq1apkynma8n7p9nh3jfzd4d06";
2018-04-17 18:40:51 +00:00
};
dependencies = [];
};
zeavim-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "zeavim-vim-2018-03-22";
2014-10-21 12:24:30 +00:00
src = fetchgit {
url = "https://github.com/KabbAmine/zeavim.vim";
rev = "6db8d84528d66ce6638db03c2864abfa8afa02aa";
sha256 = "1xw8d3ap6n31rh0a4413784sx4ki7wcz8qlwm2vf9in475vvznxj";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
2015-06-01 10:14:47 +00:00
};
2015-05-11 19:46:41 +00:00
vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-nix-2018-07-01";
2015-03-26 18:16:21 +00:00
src = fetchgit {
url = "https://github.com/LnL7/vim-nix";
rev = "7d71026ba7c2d0a4bdb915e884c4ac8dbdc45bf0";
sha256 = "084vs1p0qpkc4cx049v3mkyylj1n1yvd45i1sc9qafgp4x5va457";
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2013-06-21 05:11:07 +00:00
};
2014-10-21 12:24:30 +00:00
vim-addon-actions = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-actions-2018-01-18";
2014-10-21 12:24:30 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-actions";
rev = "540cae09832ba6abf9fc63c55781bf86584c33ac";
sha256 = "011w5k09i01r9x64j20qj0f7d057m9wki2m8l2wds47l57hr3vz6";
2014-10-21 12:24:30 +00:00
};
dependencies = ["vim-addon-mw-utils" "tlib"];
2015-05-11 19:46:41 +00:00
2015-06-01 10:14:47 +00:00
};
2015-05-11 19:46:41 +00:00
vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-async-2017-03-20";
2015-03-26 18:16:21 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-async";
rev = "eca316a4480f68c2cb62128f3187dc7b2002afde";
sha256 = "1lk8ma51dd0syi73vq5r4qk9cpy6cq3llizvh94hmxblfjpvrs7q";
2013-08-22 00:43:59 +00:00
};
dependencies = ["vim-addon-signs"];
2015-06-01 10:14:47 +00:00
2013-08-22 00:43:59 +00:00
};
vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-background-cmd-2015-12-11";
2018-01-16 15:42:16 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-background-cmd";
rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a";
sha256 = "0csy68x686l3x5ancidxb5b6prg9k7ikybqzq3klx0gs5rmksfy4";
2018-01-16 15:42:16 +00:00
};
dependencies = ["vim-addon-mw-utils"];
2018-01-16 15:42:16 +00:00
};
vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-commenting-2013-06-10";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-commenting";
rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
sha256 = "0alak8h33vada2ckb0v06y82qlib5mhyc2yswlv1rqh8ypzhq3mc";
2015-06-01 10:14:47 +00:00
};
dependencies = [];
2015-03-26 18:16:21 +00:00
2015-06-01 10:14:47 +00:00
};
2014-10-20 06:55:25 +00:00
vim-addon-completion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-completion-2015-02-10";
2013-12-16 01:21:23 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-completion";
rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
sha256 = "1ld059y2qwlc5bdfjm2p314s1qh31lxs54g944pw49r46s5nlslr";
2014-10-21 12:24:30 +00:00
};
dependencies = ["tlib"];
2015-06-01 10:14:47 +00:00
2014-10-21 12:24:30 +00:00
};
vim-addon-errorformats = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-errorformats-2014-11-05";
2014-10-21 12:24:30 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-errorformats";
rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28";
sha256 = "159zqm69fxbxcv3b2y99g57bf20qrzsijcvb5rzy2njxah3049m1";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-20 06:55:25 +00:00
};
vim-addon-goto-thing-at-cursor = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-goto-thing-at-cursor-2012-01-11";
2014-10-20 06:55:25 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-goto-thing-at-cursor";
rev = "f052e094bdb351829bf72ae3435af9042e09a6e4";
sha256 = "1ksm2b0j80zn8sz2y227bpcx4jsv76lwgr2gpgy2drlyqhn2vlv0";
2014-10-21 12:24:30 +00:00
};
dependencies = ["tlib"];
2014-10-21 12:24:30 +00:00
2015-06-01 10:14:47 +00:00
};
2014-11-20 20:49:17 +00:00
vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-local-vimrc-2015-03-19";
2014-10-20 06:55:25 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-local-vimrc";
rev = "6a27f95b35befa70cd0d049329cd0920566c764b";
sha256 = "0n8lwl1gyak149p7jpgm0qbmfj8hcg8hirx3dxdhizw0yc47ws7h";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-20 06:55:25 +00:00
};
vim-addon-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-manager-2017-05-07";
2014-10-20 06:55:25 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-manager";
rev = "2434225ae48e608c2b6ac86c8da1c62209da746f";
sha256 = "1fczkd05gir994614qmgscx131isr71bn0rwa6n3vgdbnhasz6bb";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
2014-10-21 12:24:30 +00:00
};
vim-addon-mru = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-mru-2013-08-08";
2014-10-21 12:24:30 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-mru";
rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb";
sha256 = "0q6rxr9nrp63kidr3m3c2z5sda4g813pzshg0scxkjr8dxwhzdqm";
2014-10-21 12:24:30 +00:00
};
dependencies = ["vim-addon-other" "vim-addon-mw-utils"];
2015-06-01 10:14:47 +00:00
2014-10-20 06:55:25 +00:00
};
vim-addon-mw-utils = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-mw-utils-2018-03-09";
2018-01-16 15:42:48 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-mw-utils";
rev = "295862ba6be47ec3b11b6c85c10d982ffd9bc0b2";
sha256 = "0ylvhmx0cnj2x38plwqlq4pqyqyxxhf4s08hknnl7qhrr5kd533f";
2018-01-16 15:42:48 +00:00
};
dependencies = [];
};
vim-addon-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-nix-2017-09-11";
2014-10-21 12:24:30 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-nix";
rev = "3001a9db5f816dd7af11384f15415bddd146ef86";
sha256 = "195z2yz09wirpqjpsha8x7qcr9is1q8qph4j0svws6qbqrkh8ryy";
};
dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
};
vim-addon-other = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-other-2014-07-15";
2018-01-16 15:43:04 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-other";
rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
sha256 = "0cjz7mlyfkkncas4ss7rwxb0q38ls1qw1p15hac1imscscsvyjc6";
2018-01-16 15:43:04 +00:00
};
dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
2018-01-16 15:43:04 +00:00
};
vim-addon-php-manual = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-php-manual-2015-01-01";
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-php-manual";
rev = "5f9810dd1f6e9f36a45f637ae6260ccff09256ff";
sha256 = "1kc67f12wccqdza069b75lpcbqp4kv4r23i4mfz0ihwif5mfnhir";
};
dependencies = [];
};
vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-signs-2013-04-19";
2017-01-04 04:19:04 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-signs";
rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae";
sha256 = "0i4gfp30hmw1vqjl6zxjrgkca3ikdkcnjmma2mncjmcr6f59kjzy";
2017-01-04 04:19:04 +00:00
};
dependencies = [];
};
vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-sql-2017-02-11";
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-sql";
rev = "048a139af36829fce670c8ff80d3aad927557ee6";
sha256 = "0ihm157sby6csdwsnw2gwh3jmm3prm1mxwgkx2hsfwlmpb1vwwm3";
};
dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
};
vim-addon-syntax-checker = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-syntax-checker-2017-06-26";
2018-01-16 15:43:17 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-syntax-checker";
rev = "739e5719b77c6aea3299c27fc1f4238ac54a8344";
sha256 = "1rcn1ps06156nyglvxg6m7pn3vhvmnv5ad6kidp59hggyr5332i9";
2018-01-16 15:43:17 +00:00
};
dependencies = ["vim-addon-mw-utils" "tlib"];
2018-01-16 15:43:17 +00:00
};
vim-addon-toggle-buffer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-toggle-buffer-2012-01-13";
2014-10-21 12:24:30 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-toggle-buffer";
rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
sha256 = "1xq38kfdm36c34ln66znw841q797w5gm8bpq1x64bsf2h6n3ml03";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
2015-06-01 10:14:47 +00:00
};
vim-addon-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-xdebug-2014-08-29";
2018-03-12 10:45:03 +00:00
src = fetchgit {
url = "https://github.com/MarcWeber/vim-addon-xdebug";
rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
sha256 = "1i64ppdfp2qqq7vw1jf160mj4ikc04v39iazdab83xmiqjsh8ixw";
2018-03-12 10:45:03 +00:00
};
dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
2018-03-12 10:45:03 +00:00
};
tsuquyomi = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tsuquyomi-2018-07-04";
2014-10-20 06:55:25 +00:00
src = fetchgit {
url = "https://github.com/Quramy/tsuquyomi";
rev = "9247e0f1ad0e1ae7d350ad5b27ef92269955cc65";
sha256 = "09mihjiqg407n14gb4kr60fnyp3rpi18fr9nhnpg1ym2ly0nsa1l";
2017-02-03 21:20:14 +00:00
};
dependencies = [];
};
clang_complete = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "clang_complete-2018-01-18";
2014-11-18 22:05:30 +00:00
src = fetchgit {
url = "https://github.com/Rip-Rip/clang_complete";
rev = "0918788ea0b9dc4c753ffd162c95f890ae57a275";
sha256 = "19hf7xrx1lsvn5rhwmc0qc1qzpb365j1d0jzvihd99p0zkgzgj1p";
2014-11-18 22:05:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
# In addition to the arguments you pass to your compiler, you also need to
# specify the path of the C++ std header (if you are using C++).
# These usually implicitly set by cc-wrapper around clang (pkgs/build-support/cc-wrapper).
# The linked ruby code shows generates the required '.clang_complete' for cmake based projects
# https://gist.github.com/Mic92/135e83803ed29162817fce4098dec144
# as an alternative you can execute the following command:
# $ eval echo $(nix-instantiate --eval --expr 'with (import <nixpkgs>) {}; clang.default_cxx_stdlib_compile')
preFixup = ''
substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/clang_complete.vim \
--replace "let g:clang_library_path = '' + "''" + ''" "let g:clang_library_path='${llvmPackages.clang.cc}/lib/libclang.so'"
'';
2015-06-01 10:14:47 +00:00
};
2015-05-11 19:46:41 +00:00
riv-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "riv-vim-2018-06-21";
src = fetchgit {
url = "https://github.com/Rykka/riv.vim";
rev = "fb6d6f8c9d85128fd69c74f11bb7413addc002e8";
sha256 = "1mjp90lz6jf3w9j4h1sidz7kfxhi9hk27pdnvb0hrvxw0q3bj9ch";
};
dependencies = [];
};
deoplete-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "deoplete-nvim-2018-07-19";
2015-10-03 08:44:52 +00:00
src = fetchgit {
url = "https://github.com/Shougo/deoplete.nvim";
rev = "0f1921799644cd662cb0a3393ba71096e5e56115";
sha256 = "0xbi6zac45fr8ipz1vqafl6ljh7bpdhbz7dfdyv8z04aqvn621s2";
};
dependencies = [];
};
ultisnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "ultisnips-2018-04-30";
src = fetchgit {
url = "https://github.com/SirVer/ultisnips";
2018-06-17 19:47:00 +00:00
rev = "6fdc3647f72e0a1f321ea6bd092ecd01f7c187ba";
sha256 = "1zp3xcmxk6cn38zmxxy5s2wnw9djskwkmspq2s9vqliyhprf9sy3";
};
dependencies = [];
};
vim-hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-hoogle-2018-03-04";
2017-02-12 22:46:43 +00:00
src = fetchgit {
url = "https://github.com/Twinside/vim-hoogle";
rev = "871d104c92e33cb238506f2805f1652561978cc8";
sha256 = "17qvi57g72ijgk7nczczli3kcphvdf625fzqbqcmqpsawgvfd07n";
2017-02-12 22:46:43 +00:00
};
dependencies = [];
};
vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-gitgutter-2018-07-06";
src = fetchgit {
url = "https://github.com/airblade/vim-gitgutter";
rev = "6076c9678643a8b2fc9973f16ec9efcd5dbe1aca";
sha256 = "1dyrll5rm61qdmzkym67hfyw80qnw10s1qrz9ryw3zvh1s2ad43l";
2016-06-17 06:16:39 +00:00
};
dependencies = [];
};
2016-04-15 22:32:47 +00:00
Spacegray-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Spacegray-vim-2018-06-20";
2016-04-15 22:32:47 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/ajh17/Spacegray.vim";
rev = "f9e5205319cbb5c598bbf02b16c3d05277817f81";
sha256 = "1s32zf75ybqs9jjjvqk5z4x9a6lr43gjbwlgw8k01qf4lsxkzkn9";
2016-04-15 22:32:47 +00:00
};
dependencies = [];
};
nerdtree-git-plugin = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "nerdtree-git-plugin-2017-03-12";
src = fetchgit {
url = "https://github.com/albfan/nerdtree-git-plugin";
rev = "d79a5d5a1b3bc5fab3ba94db44a8b2e5a211d61d";
sha256 = "0i77wijbr021zfv096ja15f5l52phvsd5gziqn1m3k60qkmb9gkj";
};
dependencies = [];
};
vim-colors-solarized = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-colors-solarized-2011-05-09";
src = fetchgit {
url = "https://github.com/altercation/vim-colors-solarized";
rev = "528a59f26d12278698bb946f8fb82a63711eec21";
sha256 = "05d3lmd1shyagvr3jygqghxd3k8a4vp32723fvxdm57fdrlyzcm1";
};
dependencies = [];
};
vim-closetag = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-closetag-2018-05-15";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/alvan/vim-closetag";
2018-06-17 19:47:00 +00:00
rev = "17367f433e095a66a8a885ab628033ce2a635aa1";
sha256 = "11qkk1vsihw2sv1vdn94xjwm2p5hvisjv5h1arpdyxpnz45rs6vh";
};
dependencies = [];
2018-01-25 11:44:15 +00:00
};
ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-z-2015-10-17";
src = fetchgit {
url = "https://github.com/amiorin/ctrlp-z";
rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026";
sha256 = "16nsj1g8lqmyizlb5ijwhf4dsmh0xv1kwqq6jxvhaf55vfga82yl";
};
dependencies = [];
};
vim-logreview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-logreview-2017-07-08";
src = fetchgit {
url = "https://github.com/andreshazard/vim-logreview";
rev = "b7b66ab338e904127d796af49235b8c29742f18f";
sha256 = "09lyymq0f3ybqdzhbpia7b0wcjbcyg5nkqd72qk8jkvc42da2af3";
};
dependencies = [];
};
2018-01-25 11:44:15 +00:00
peskcolor-vim-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "peskcolor-vim-git-2016-06-11";
src = fetchgit {
url = "https://github.com/andsild/peskcolor.vim.git";
rev = "cba4fc739bbebacd503158f6509d9c226651f363";
sha256 = "15hw3casr5y3ckgcn6aq8vhk6g2hym41w51nvgf34hbj9fx1nvkq";
};
dependencies = [];
};
2017-09-11 11:49:36 +00:00
flake8-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "flake8-vim-2017-02-17";
src = fetchgit {
url = "https://github.com/andviro/flake8-vim";
rev = "01c4af4c68f33b2b3785314bfbf5b3d8d1451795";
sha256 = "14rv0p1vx4njlplkc72gz7r8sy9vc6n8x9l00zc777x5zzrhgz3g";
};
dependencies = [];
};
2015-09-16 21:40:31 +00:00
vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-03-12 10:45:03 +00:00
name = "vim-css-color-2018-03-06";
2015-09-16 21:40:31 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/ap/vim-css-color";
2018-03-12 10:45:03 +00:00
rev = "afaacf50e65b7d30b170e70ee13c1518dce1e032";
sha256 = "1ck8qv3wfmc7rdddzd7zh2dsnb0rx69grmc0laz7n1358xg0i4vx";
2015-09-16 21:40:31 +00:00
};
dependencies = [];
};
2018-01-25 11:49:50 +00:00
vim-bazel = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-bazel-2018-01-10";
src = fetchgit {
url = "https://github.com/bazelbuild/vim-bazel";
rev = "ecafb17d5d1d3756e5ac0bd9f4812a450b8c91a3";
sha256 = "0ixhx9ssfygjy2v2ss02w28rcjxnvhj0caffj32cv3snwnpcz6fy";
};
dependencies = ["maktaba"];
};
2016-11-07 19:21:11 +00:00
clighter8 = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-04-17 18:40:51 +00:00
name = "clighter8-2018-04-15";
2016-11-07 19:21:11 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/bbchung/clighter8";
2018-04-17 18:40:51 +00:00
rev = "6d325abd043fd1bc31bea821f751996541bfc944";
sha256 = "1kmk6q1hca97052dif1m3ygcr9zrnc3i2lrvkzlmsqb159mgfsgq";
2016-11-07 19:21:11 +00:00
};
dependencies = [];
preFixup = ''
sed "/^let g:clighter8_libclang_path/s|')$|${llvmPackages.clang.cc}/lib/libclang.so')|" \
-i "$out"/share/vim-plugins/clighter8/plugin/clighter8.vim
'';
};
2015-10-02 08:26:46 +00:00
neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neomake-2018-07-16";
2015-10-02 08:26:46 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/benekastah/neomake";
rev = "f26a31a315f60150fd42682df911306b4d795dd8";
sha256 = "1rxlzypzwlr6j84llg30d122142la621nai1f7735i58kvmzk51w";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-hdevtools = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-04-23 05:47:51 +00:00
name = "vim-hdevtools-2017-03-11";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/bitc/vim-hdevtools";
2017-04-23 05:47:51 +00:00
rev = "4ffdace7002915cb10d663a2c56386286c5b8e37";
sha256 = "0s7qd72962sc56j8xzpzikjs9k5s89d5p0j541abl8zm0mavmyka";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
2015-06-01 10:14:47 +00:00
};
2015-05-11 19:46:41 +00:00
vim-trailing-whitespace = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-11-06 11:24:35 +00:00
name = "vim-trailing-whitespace-2017-09-22";
src = fetchgit {
url = "https://github.com/bronson/vim-trailing-whitespace";
2017-11-06 11:24:35 +00:00
rev = "4c596548216b7c19971f8fc94e38ef1a2b55fee6";
sha256 = "0f1cpnp1nxb4i5hgymjn2yn3k1jwkqmlgw1g02sq270lavp2dzs9";
};
dependencies = [];
};
2018-01-25 11:52:32 +00:00
vim-toml = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-toml-2018-06-15";
2018-01-25 11:52:32 +00:00
src = fetchgit {
url = "https://github.com/cespare/vim-toml";
2018-06-17 19:47:00 +00:00
rev = "85ba8277a6e331a56fce920d62bfdacce5bc5a80";
sha256 = "0nnm4ja5j9gcsl9cv7ra30slrlpjpy4dsl0ykg0yhdq1vbby3m6n";
2018-01-25 11:52:32 +00:00
};
dependencies = [];
};
2018-01-25 11:54:22 +00:00
denite-extra = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "denite-extra-2018-07-19";
2018-01-25 11:54:22 +00:00
src = fetchgit {
url = "https://github.com/chemzqm/denite-extra";
rev = "10836562703ebfe6552204e63b9b4293236d6d0f";
sha256 = "1jq6wv6vhjpkd9xy8i6rjd0l69djvxg8395ylclr2dv21carx5z6";
2018-01-25 11:54:22 +00:00
};
dependencies = [];
};
2018-01-25 11:56:12 +00:00
denite-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "denite-git-2018-07-19";
2018-01-25 11:56:12 +00:00
src = fetchgit {
url = "https://github.com/chemzqm/denite-git";
rev = "edd2c202e05c3f84e31b94a841fef236b923d559";
sha256 = "0x8nf4x49859lgyi83vhqvpdhb1mxv55a9l8vbdflfagagj0gnzd";
2018-01-25 11:56:12 +00:00
};
dependencies = [];
};
2018-01-25 11:56:58 +00:00
concealedyank-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "concealedyank-vim-2013-03-24";
src = fetchgit {
url = "https://github.com/chikatoike/concealedyank.vim";
rev = "e7e65a395e0e6a266f3a808bc07441aa7d03ebbd";
sha256 = "0z7i8dmwfjh6mcrmgrxv3j86ic867617fas9mv4gqsrhhvrrkzsb";
};
dependencies = [];
};
sourcemap-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "sourcemap-vim-2012-09-19";
src = fetchgit {
url = "https://github.com/chikatoike/sourcemap.vim";
rev = "0dd82d40faea2fdb0771067f46c01deb41610ba1";
sha256 = "1gcgnynallz420911fdfm0ccbv3zs78p69nnh2ls1r4vlfp7g350";
};
dependencies = [];
};
CheckAttach = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "CheckAttach-2018-07-18";
src = fetchgit {
url = "https://github.com/chrisbra/CheckAttach";
rev = "0f1f2e78071d7f805a0a679955cb4486f692b753";
sha256 = "11skk275ijq8hwpp0zxsdgr08brq08v1syvyawck8vzrnqrq71sc";
};
dependencies = [];
};
csv-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "csv-vim-2018-06-24";
src = fetchgit {
url = "https://github.com/chrisbra/csv.vim";
rev = "918be3bd15920fd9bc79fca5e6870b8055742a1a";
sha256 = "01fhw55s5q23ny3n7ldg53n3raysr2wnnkpfybbba2wv55w5vpdy";
};
dependencies = [];
};
sparkup = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "sparkup-2012-06-10";
src = fetchgit {
url = "https://github.com/chrisgeo/sparkup";
rev = "6fbfceef890e705c47b42b27be743ffed6f9296e";
sha256 = "17jgpvl879ik53rr3razfnbpfx63mzpp1rlvxxjsvvrk4g45dssm";
};
dependencies = [];
};
base16-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "base16-vim-2018-05-24";
src = fetchgit {
url = "https://github.com/chriskempson/base16-vim";
rev = "fcce6bce6a2f4b14eea7ea388031c0aa65e4b67d";
sha256 = "0wi8k80v2brmxqbkk0lrvl4v2sslkjfwpvflm55b3n0ii8qy39nk";
};
dependencies = [];
};
2017-03-03 23:15:26 +00:00
vim-sort-motion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-sort-motion-2018-07-15";
2017-03-03 23:15:26 +00:00
src = fetchgit {
url = "https://github.com/christoomey/vim-sort-motion";
rev = "49dfcabeee2bf3a85a6cc0774b35f687b6c9d0e5";
sha256 = "02v12iqy3gjhvh5aza6b6b3pfv2qkyyw83bxqjgbjj002f71ydkb";
2017-03-03 23:15:26 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-tmux-navigator-2018-07-13";
2014-11-23 19:42:22 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/christoomey/vim-tmux-navigator";
rev = "18b775fbccde5ff02e516c014290650bb40e257d";
sha256 = "09v8amrdk8h4hsr9va8v9wdgzvj89z04y4j71l94rd7r6smxinbj";
};
dependencies = [];
};
spacevim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "spacevim-2018-03-29";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/ctjhoa/spacevim";
rev = "30142a518ba77feb22791b5cb2387d88b70c58f2";
sha256 = "0m389cnpg17ca8s7vb9yrs40sxb56zg32lcpilnd63zfi7awgscg";
2014-11-23 19:42:22 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-11-23 19:42:22 +00:00
};
2015-10-03 08:38:55 +00:00
ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-vim-2018-06-28";
2015-10-03 08:38:55 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/ctrlpvim/ctrlp.vim";
rev = "43cc73b8e7d4ab45f17118573eb81fd45704b989";
sha256 = "16jn9n6vavwiwh6l2av2i3livan72saaz0d0v8vmznrrs2ngi1gk";
};
dependencies = [];
};
vim2hs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim2hs-2014-04-16";
src = fetchgit {
url = "https://github.com/dag/vim2hs";
rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
sha256 = "18lqrl3hqb6cmizc04bbnsh8j0g761w2q8wascbzzfw80dmxy36b";
};
dependencies = [];
};
quickfixstatus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "quickfixstatus-2011-09-02";
src = fetchgit {
url = "https://github.com/dannyob/quickfixstatus";
rev = "fd3875b914fc51bbefefa8c4995588c088163053";
sha256 = "16vxhvyxq51y7wnx0c1fmdi2yb6kfr1pxijq65gxj8qwvbak2s3v";
};
dependencies = [];
};
agda-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "agda-vim-2018-05-23";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/derekelkins/agda-vim";
2018-06-17 19:47:00 +00:00
rev = "24169e70c1dbd784349b1551b6a3753680d9bb87";
sha256 = "1bn2g89dvwccfl4ki07jb8iydb3d0s4rm7z5gv5q1bv3lccndax6";
2015-10-03 08:38:55 +00:00
};
dependencies = [];
};
2017-02-03 13:28:48 +00:00
vim-scala = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-12-07 15:26:37 +00:00
name = "vim-scala-2017-11-10";
2017-02-03 13:28:48 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/derekwyatt/vim-scala";
2017-12-07 15:26:37 +00:00
rev = "0b909e24f31d94552eafae610da0f31040c08f2b";
sha256 = "1lqqapimgjr7k4imr26ap0lgx6k4qjl5gmgb1knvh5kz100bsjl5";
2017-02-03 13:28:48 +00:00
};
dependencies = [];
};
vim-table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-table-mode-2018-05-16";
src = fetchgit {
url = "https://github.com/dhruvasagar/vim-table-mode";
2018-06-17 19:47:00 +00:00
rev = "5483e163bd0a67e729e0e8436315f33f9e126baf";
sha256 = "0mmpa7zhrj8mqf4931ldf6n9jlpfxc4kg8xdhqlp7srlnq4h8siw";
};
dependencies = [];
};
2015-09-16 00:38:20 +00:00
vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-04-23 05:47:51 +00:00
name = "vim-jade-2017-04-07";
2015-09-16 00:38:20 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/digitaltoad/vim-jade";
2017-04-23 05:47:51 +00:00
rev = "ddc5592f8c36bf4bd915c16b38b8c76292c2b975";
sha256 = "069pha18g1nlzg44k742vjxm4zwjd1qjzhfllkr35qaiflvjm84y";
2015-09-16 00:38:20 +00:00
};
dependencies = [];
};
pony-vim-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-11-06 11:24:35 +00:00
name = "pony-vim-syntax-2017-09-26";
src = fetchgit {
url = "https://github.com/dleonard0/pony-vim-syntax";
2017-11-06 11:24:35 +00:00
rev = "caa34b3d7a15d9bfbfbb2f5944c85eb1eddcfafc";
sha256 = "0r2lv99hkm95dv8wy9rkrkcwz5wkmwggfwi5vakgw497l3a9jskr";
};
dependencies = [];
};
2017-02-12 22:46:43 +00:00
vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-2018-07-07";
2017-01-04 04:19:04 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/dracula/vim";
rev = "a88e82a94f0ff41e84e51fe501635f0f64d1bb33";
sha256 = "1ld7vbh6dxrf3wqbya9pvvzwp7qgv2pdj74g5w7yjn1bdi597vnm";
2017-01-04 04:19:04 +00:00
};
dependencies = [];
};
xptemplate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-12-07 15:26:37 +00:00
name = "xptemplate-2017-12-06";
src = fetchgit {
url = "https://github.com/drmingdrmer/xptemplate";
2017-12-07 15:26:37 +00:00
rev = "74aac3aebaf9c67c12c21d6b25295b9bec9c93b3";
sha256 = "01yvas50hg7iwwrdh61407mc477byviccksgi0fkaz89p78bbd1p";
};
dependencies = [];
};
ghcmod-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ghcmod-vim-2016-06-19";
src = fetchgit {
url = "https://github.com/eagletmt/ghcmod-vim";
rev = "1d192d13d68ab59f9f46497a0909bf24a7b7dfff";
sha256 = "0bzahgzagnf0a9zv86jhdf8nc3p0yfz9izv5n3lc8gc12cp47d0a";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "neco-ghc-2018-05-13";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/eagletmt/neco-ghc";
2018-06-17 19:47:00 +00:00
rev = "682869aca5dd0bde71a09ba952acb59c543adf7d";
sha256 = "1v7ibi4fp99s4lswz3v0gf4i0h5i5gpj05xpsf4cixwj2zgh206h";
};
dependencies = [];
};
editorconfig-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-11-06 11:24:35 +00:00
name = "editorconfig-vim-2017-10-14";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/editorconfig/editorconfig-vim";
2017-11-06 11:24:35 +00:00
rev = "0abb0634a8bf3c760a283e9e7475594b83869a46";
sha256 = "1wazl37ivn9nhsy296g1ncvvwc78930lbp8arhwavr52mzpfji21";
};
dependencies = [];
};
2018-01-25 11:57:29 +00:00
vim-cute-python-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-cute-python-git-2016-04-04";
src = fetchgit {
url = "https://github.com/ehamberg/vim-cute-python.git";
rev = "d7a6163f794500447242df2bedbe20bd751b92da";
sha256 = "1jrfd6z84cdzn3yxdfp0xfxygscq7s8kbzxk37hf9cf5pl9ln0qf";
};
dependencies = [];
};
acp = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "acp-2013-02-05";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/eikenb/acp";
rev = "5c627cec37d0d3b1670cb250d84e176e8b0c644e";
sha256 = "0h7s4nvxin7m2caka7g1hhlxj1bbiwsvw8s2lqwlh7nq43v23ghg";
};
dependencies = [];
};
2017-02-12 22:46:43 +00:00
vim-elixir = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-elixir-2018-05-25";
2017-02-12 22:46:43 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/elixir-lang/vim-elixir";
2018-06-17 19:47:00 +00:00
rev = "b916c00a7cdb6099dbebb6096eab55794751e2b3";
sha256 = "1scg80j7kjjqfcswddwsig166zmipa9q6rm0kh8779i7qflgg4g0";
2017-02-12 22:46:43 +00:00
};
dependencies = [];
};
elm-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "elm-vim-2018-06-18";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/elmcast/elm-vim";
rev = "e51e2e43ad617c26205a84453481d3ac152c8fec";
sha256 = "09bgfjnpa1s25x5wnxry9lmsly92s0mazn1sl0vg2wfgphf67m6b";
};
dependencies = [];
};
2018-01-25 12:28:32 +00:00
vim-json = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-json-2018-01-10";
src = fetchgit {
url = "https://github.com/elzr/vim-json";
rev = "3727f089410e23ae113be6222e8a08dd2613ecf2";
sha256 = "1c19pqrys45pzflj5jyrm4q6hcvs977lv6qsfvbnk7nm4skxrqp1";
};
dependencies = [];
};
2016-06-14 21:03:59 +00:00
vim-localvimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-localvimrc-2018-04-05";
2016-06-14 21:03:59 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/embear/vim-localvimrc";
rev = "736f9712dd2eb8a7a3ae15d61611db9b5a66c648";
sha256 = "09r8hvvm8fdr5rlrgfwnhjkk967dfmis8vgi3d45c9svhsybhkja";
2016-06-14 21:03:59 +00:00
};
dependencies = [];
};
vim-haskellConcealPlus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-haskellConcealPlus-2016-05-13";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/enomsg/vim-haskellConcealPlus";
rev = "81dfb51ff8e471fb1f30659a10daaf1bdd65fb03";
sha256 = "0vm76gxw62lkyxccrlnn8sblfl3d51svwfra9wfixq4h51jdggyr";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2013-06-27 01:21:11 +00:00
};
2017-04-23 05:47:51 +00:00
ensime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "ensime-vim-2018-04-21";
2017-04-23 05:47:51 +00:00
src = fetchgit {
url = "https://github.com/ensime/ensime-vim";
2018-06-17 19:47:00 +00:00
rev = "634cce6eae10a31cd6eec259890bdcda326ee3c2";
sha256 = "03sr53680kcwxaa5xbqzdfbsgday3bkzja33wym49w9gjmlaa320";
2017-04-23 05:47:51 +00:00
};
dependencies = ["vimproc" "vimshell" "self" "forms"];
2017-06-11 11:09:29 +00:00
pythonDependencies = with pythonPackages; [ sexpdata websocket_client ];
2017-04-23 05:47:51 +00:00
};
supertab = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "supertab-2017-11-14";
src = fetchgit {
url = "https://github.com/ervandew/supertab";
rev = "40fe711e088e2ab346738233dd5adbb1be355172";
sha256 = "0l5labq68kyprv63k1q35hz5ly0dd06mf2z202mccnix4mlxf0db";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
YUNOcommit-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "YUNOcommit-vim-2014-11-26";
2014-10-20 06:55:25 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/esneider/YUNOcommit.vim";
2015-06-01 10:14:47 +00:00
rev = "981082055a73ef076d7e27477874d2303153a448";
2016-02-25 09:17:06 +00:00
sha256 = "0mjc7fn405vcx1n7vadl98p5wgm6jxrlbdbkqgjq8f1m1ir81zab";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2015-06-01 10:14:47 +00:00
};
2014-10-21 12:24:30 +00:00
vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-go-2018-07-18";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/fatih/vim-go";
rev = "2c909e71e184de6ea23e3f8adc7d199856c2806b";
sha256 = "0v42yrgnd3hi8s2i9ij7ldgyvs75jkikw1kpqblysdim9cfbbqfk";
2015-12-11 18:31:40 +00:00
};
dependencies = [];
};
vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-11-06 11:24:35 +00:00
name = "vim-colorschemes-2017-08-22";
2015-12-11 18:31:40 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/flazz/vim-colorschemes";
2017-11-06 11:24:35 +00:00
rev = "eab315701f4627967fd62582eefc4e37a3745786";
sha256 = "12jfqfs6lqd6jijxrdx3k76bzxrh9517zwczb73qjaqbg286fh5k";
};
dependencies = [];
};
floobits-neovim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-11-06 11:24:35 +00:00
name = "floobits-neovim-2017-08-02";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/floobits/floobits-neovim";
2017-11-06 11:24:35 +00:00
rev = "9ccd5a8d5d28261b9686717d61a32b756f38f189";
sha256 = "02njg49qz9bfzggpn7z5c7w1wa1k5hxly66904wizl601fa6c664";
};
dependencies = [];
};
2016-06-14 21:03:59 +00:00
psc-ide-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-03-12 10:45:03 +00:00
name = "psc-ide-vim-2018-03-11";
2016-06-14 21:03:59 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/frigoeu/psc-ide-vim";
2018-03-12 10:45:03 +00:00
rev = "6d4a3cc27e9782b703f6dd61ef5fdf27054bac0f";
sha256 = "19w0cvrka3klxbh9z1yq873v92rhmxdj68bdnqxzwybf24hgsk9g";
2016-06-14 21:03:59 +00:00
};
dependencies = [];
};
vim-snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-snipmate-2017-04-20";
src = fetchgit {
url = "https://github.com/garbas/vim-snipmate";
rev = "a9802f2351910f64b70fb10b63651e6ff6b8125e";
sha256 = "1l7sc6lf66pkiy18aq9s3wk1dmvvvsy1063cc0bxich9xa8m34bj";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
};
vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vundle-2018-02-02";
src = fetchgit {
url = "https://github.com/gmarik/vundle";
rev = "9a38216a1c0c597f978d73547d37681fc689c90d";
sha256 = "1695glma8zf2lnp0w713sdvwqagf1s127p4i60114nk6gx5g5x2c";
};
dependencies = [];
};
csapprox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "csapprox-2013-07-26";
src = fetchgit {
url = "https://github.com/godlygeek/csapprox";
rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
sha256 = "08g4x6nnd6hkgm2daa5ihhz75pcdx3jzzv8rfjls80qajlhx5rf6";
};
dependencies = [];
};
tabular = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tabular-2016-05-04";
src = fetchgit {
url = "https://github.com/godlygeek/tabular";
rev = "00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367";
sha256 = "185jpisk9hamcwb6aiavdzjdbbigzdra8f4mgs98r9cm9j448xkz";
};
dependencies = [];
};
vim-codefmt = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-codefmt-2018-06-06";
src = fetchgit {
url = "https://github.com/google/vim-codefmt";
2018-06-17 19:47:00 +00:00
rev = "78f646545c4e1254fc413242e5c204a2dc79665d";
sha256 = "0ysnjsc7nybm374k039655y1wijkh8p2m0hsfxf9cxf79yjinyql";
};
dependencies = ["maktaba"];
};
vim-jsonnet = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-04-17 18:40:51 +00:00
name = "vim-jsonnet-2018-04-10";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/google/vim-jsonnet";
2018-04-17 18:40:51 +00:00
rev = "1425166887329363381194adc457b02b663b1354";
sha256 = "0kkpvp1r06l3glhgw4wv3ihqisjhs5m0x7mxgy388hy4r73fx08j";
2017-01-04 04:19:04 +00:00
};
dependencies = [];
};
2018-03-12 10:45:03 +00:00
vim-maktaba = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-maktaba-2018-05-06";
2018-03-12 10:45:03 +00:00
src = fetchgit {
url = "https://github.com/google/vim-maktaba";
2018-06-17 19:47:00 +00:00
rev = "ffdb1a5a9921f7fd722c84d0f60e166f9916b67d";
sha256 = "1cmhgd9xvx09l6ypks09gxqs1vad1bddinf4cx2jmd516bv8qss3";
2018-03-12 10:45:03 +00:00
};
dependencies = [];
};
gitv = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "gitv-2018-06-10";
2018-03-12 10:45:03 +00:00
src = fetchgit {
url = "https://github.com/gregsexton/gitv";
2018-06-17 19:47:00 +00:00
rev = "41e4ffdbdb02374412d03c5680906ebee84dd5a2";
sha256 = "1wfp3kkcvrccq0dqplg3ymyz9vdwn1c5wabh6mwfzbs2zx01vwcn";
2018-03-12 10:45:03 +00:00
};
dependencies = ["fugitive"];
};
xterm-color-table-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "xterm-color-table-vim-2013-12-31";
src = fetchgit {
url = "https://github.com/guns/xterm-color-table.vim";
rev = "9754e857e5f4fe1f8727106dcc682d21c29a51e4";
sha256 = "08a1d9428xwrjp40qgi34cb5fwgc239qf3agxl32k7bqbn08pq19";
};
dependencies = [];
};
2017-01-04 04:19:04 +00:00
vim-jsdoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-jsdoc-2018-05-05";
2017-01-04 04:19:04 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/heavenshell/vim-jsdoc";
2018-06-17 19:47:00 +00:00
rev = "5ef086789f5ac431d1d5aab53e771f00f1c25503";
sha256 = "0f0dbcvbmha2nfadvf27crxkkxc1ps1inss5n66vy1p5bffv0bpm";
};
dependencies = [];
};
vim-leader-guide = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-04-23 05:47:51 +00:00
name = "vim-leader-guide-2017-03-18";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/hecal3/vim-leader-guide";
2017-04-23 05:47:51 +00:00
rev = "6ac8c663e65c9c0ded70417b84f66ee59457893e";
sha256 = "1hqha3ig40ls15bnb10xpbl91swn0gxqnhmz5frkvvdzj4wq55fw";
};
dependencies = [];
};
vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-snippets-2018-07-19";
src = fetchgit {
url = "https://github.com/honza/vim-snippets";
rev = "1143432afdb3a97b606b081700eead5b4f499d4d";
sha256 = "1z0pgpsv8y1zhxlm6w76wgd4wx378wbq44mvgxxfxi0mfvb6vywf";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-12-07 15:26:37 +00:00
name = "idris-vim-2017-12-04";
2014-11-20 20:49:17 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/idris-hackers/idris-vim";
2017-12-07 15:26:37 +00:00
rev = "091ed6b267749927777423160eeab520109dd9c1";
sha256 = "1zibar2vxcmai0k37ricwnimfdv1adxfbbvz871rc4l6h3q85if1";
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-11-20 20:49:17 +00:00
};
vim-SyntaxRange = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-SyntaxRange-2018-03-09";
src = fetchgit {
url = "https://github.com/inkarkat/vim-SyntaxRange";
rev = "dc33d8f84ebbf4c9fa03ce00b8adeb83e05249d3";
sha256 = "0nf0hkgl5fm0laxb5253br894259kz33zyiwxzrry6w3108alasr";
};
dependencies = [];
};
vim-extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-extradite-2015-09-22";
src = fetchgit {
url = "https://github.com/int3/vim-extradite";
rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526";
sha256 = "0c89i0spvdm9vi65q15qcmsfmwa9rds2wmaq1kf6s7q7ywvs6w8i";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "calendar-vim-2018-07-04";
2015-06-01 10:14:47 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/itchyny/calendar.vim";
rev = "f27fcf52c8a516f55ede5cff468f0a3e4014ae1b";
sha256 = "07gg83bgj9c43jn66zlvyc1avqjyidb9cjwdv1ln3965zkl47b5r";
2016-04-15 22:32:47 +00:00
};
dependencies = [];
};
lightline-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "lightline-vim-2018-07-05";
2016-04-15 22:32:47 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/itchyny/lightline.vim";
rev = "0532dff598abca9975d3f80128eaadadbf1d91d4";
sha256 = "1wvhl2wc2p4vqi7zzj7wdyq0cnbfq8s7g5ifcchj8f5s8c4h4lfc";
};
2015-06-01 10:14:47 +00:00
dependencies = [];
};
2015-06-01 10:14:47 +00:00
thumbnail-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-05-21 12:56:49 +00:00
name = "thumbnail-vim-2017-04-24";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/itchyny/thumbnail.vim";
2017-05-21 12:56:49 +00:00
rev = "71cb5d48e59fc77149c1d1036ecd9e39f0b46a00";
sha256 = "0b25n28ri6n5rrvgfynv8rm5pzzxpnrnj1l3647pf2fjxd2z2rv5";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
};
vim-cursorword = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-cursorword-2017-10-19";
src = fetchgit {
url = "https://github.com/itchyny/vim-cursorword";
rev = "4878d6185b99131c5f610cc6ad0e223439ac4601";
sha256 = "170nf0w7i5k3cr72dkvraq2p0lzsvb3cmdvslyz7cmxnz611n6bf";
};
dependencies = [];
};
2018-01-25 13:12:16 +00:00
vim-gitbranch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-gitbranch-2017-05-28";
src = fetchgit {
url = "https://github.com/itchyny/vim-gitbranch";
rev = "8118dc1cdd387bd609852be4bf350360ce881193";
sha256 = "01gvd96mnzfc5s0951zzq122birg5svnximkldgb9kv5bmsnmh3j";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-ipython = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "vim-ipython-2015-06-23";
2014-08-13 17:58:25 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/ivanov/vim-ipython";
2015-06-26 23:05:15 +00:00
rev = "42499f094b805b90b683afa5009cee99abd0bb75";
sha256 = "10wpfvfs8yv1bvzra4d5zy5glp62gbalpayxx7mkalhr2ccppy3x";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
2015-06-01 10:14:47 +00:00
};
2014-08-13 17:58:25 +00:00
tender-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tender-vim-2017-03-14";
src = fetchgit {
url = "https://github.com/jacoborus/tender.vim";
rev = "6b0497a59233b3e67fb528a498069eb1d24743f9";
sha256 = "1iqijk7xq0g6p3j8jgzgrhqizw87fnfryx73iaqqx5iyq1k8i9mn";
};
dependencies = [];
};
2018-01-25 13:27:18 +00:00
vim-test-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-test-git-2018-07-10";
2018-01-25 13:27:18 +00:00
src = fetchgit {
url = "https://github.com/janko-m/vim-test.git";
rev = "e24477e81e91fe90c5d914849848027cb09a7c86";
sha256 = "1kkfzs0bmbg4kjips1jylrsd5rqd39ab2x2z1a64pjkx1fvl703b";
2018-01-25 13:27:18 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-hier = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-hier-2011-08-27";
2014-08-13 17:58:25 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/jceb/vim-hier";
2015-06-01 10:14:47 +00:00
rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7";
2016-02-25 09:17:06 +00:00
sha256 = "118pd9sx1bl9vfr89xrf536hfx4l162a43a1qpwpkqxzb9a3ca7n";
};
2015-06-01 10:14:47 +00:00
dependencies = [];
buildInputs = [ vim ];
};
2016-04-15 22:32:47 +00:00
vim-orgmode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-12-07 15:26:37 +00:00
name = "vim-orgmode-2017-11-17";
2016-04-15 22:32:47 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/jceb/vim-orgmode";
2017-12-07 15:26:37 +00:00
rev = "ce17a40108a7d5051a3909bd7c5c94b0b5660637";
sha256 = "0ni99a5zylb0sbmik2xydia87qlv1xcl18j92nwxg8d6wxsnywb9";
2016-04-15 22:32:47 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-buffergator-2018-05-02";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/jeetsukumaran/vim-buffergator";
2018-06-17 19:47:00 +00:00
rev = "947b60dca4d4fc6a041a6ec84b17ca6736d1b916";
sha256 = "1b6sw5858h3v7p46v1fiy06jnfwiwqsfqwhr46ia12d0rfdm538c";
2015-03-26 18:16:21 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
};
2015-06-01 10:14:47 +00:00
tslime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-06-14 21:03:59 +00:00
name = "tslime-vim-2016-06-14";
2015-03-26 18:16:21 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/jgdavey/tslime.vim";
2016-06-14 21:03:59 +00:00
rev = "c980c76bbfc9a523fcf1edf08580d0d3a486e8f2";
sha256 = "0gifyxwlspfnkni886adwn9kc0dckanjk0097y8pwxh7qbwfydf1";
2015-03-26 18:16:21 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2015-02-16 01:20:10 +00:00
2015-06-01 10:14:47 +00:00
};
2015-02-16 01:20:10 +00:00
2017-11-06 11:24:35 +00:00
vim-docbk = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-docbk-2015-04-01";
src = fetchgit {
url = "https://github.com/jhradilek/vim-docbk";
rev = "6ac0346ce96dbefe982b9e765a81c072997f2e9e";
sha256 = "1jnx39m152hf9j620ygagaydg6h8m8gxkr1fmxj6kgqf71jr0n9d";
};
dependencies = [];
};
auto-pairs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-07-08 01:24:03 +00:00
name = "auto-pairs-2017-07-03";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/jiangmiao/auto-pairs";
2017-07-08 01:24:03 +00:00
rev = "f0019fc6423e7ce7bbd01d196a7e027077687fda";
sha256 = "1kzrdq3adwxwm3fw65g05ww9405lwqi368win5kayamyj9i0z7r6";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-nerdtree-tabs-2018-05-05";
2015-06-01 10:14:47 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/jistr/vim-nerdtree-tabs";
2018-06-17 19:47:00 +00:00
rev = "5fc6c6857028a07e8fe50f0adef28fb20218776b";
sha256 = "051m4jb8jcc9rbafp995hmf4q6zn07bwh7anra6k1cr14i9lasaa";
2015-02-16 01:20:10 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2015-02-16 01:20:10 +00:00
};
zenburn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "zenburn-2018-04-29";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/jnurmine/zenburn";
2018-06-17 19:47:00 +00:00
rev = "2cacfcb222d9db34a8d1a13bb8bb814f039b98cd";
sha256 = "0m5d5sjckirfpdhg9sf1nl5xywvzdx6y04r13m47jlavf79hhimi";
};
dependencies = [];
};
2015-12-11 18:31:40 +00:00
vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-02-25 09:17:06 +00:00
name = "vim-colorstepper-2016-01-28";
2015-12-11 18:31:40 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/jonbri/vim-colorstepper";
2016-02-25 09:17:06 +00:00
rev = "f23ba0d995d41508a2dc9471cf31d3d01a4b5f05";
sha256 = "05ykxn0gmh8liz0zv5hb8df1ajggxp88izq3825m0yb3ma3k1jqs";
2015-12-11 18:31:40 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-xdebug-2012-08-15";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/joonty/vim-xdebug";
rev = "a4980fa65f7f159780593ee37c178281691ba2c4";
2016-02-25 09:17:06 +00:00
sha256 = "1qh18r0sm4gh95sjbi2hnflvxdl4gk00jyy3n7z4i1gnx9ihxjqw";
2015-02-03 21:17:08 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
postInstall = false;
2015-02-03 21:17:08 +00:00
};
fzf-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "fzf-vim-2018-07-11";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/junegunn/fzf.vim";
rev = "8d56bdd6ade7899f0b0a10cfc219804b4ccbc109";
sha256 = "0m3p2gp42hshxb7hrgw63fp155a5l1x9fjr2k21dv22xqlaqy9hj";
};
dependencies = [];
};
goyo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "goyo-vim-2017-06-01";
src = fetchgit {
url = "https://github.com/junegunn/goyo.vim";
rev = "5b8bd0378758c1d9550d8429bef24b3d6d78b592";
sha256 = "0jh2gyf6v1vl12hygzwylzsj1ivx7r6xrd75k2wfsy91b2pm9srj";
};
dependencies = [];
};
2015-10-02 08:26:46 +00:00
limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "limelight-vim-2016-06-24";
2015-10-02 08:26:46 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/junegunn/limelight.vim";
rev = "106fb5749d227a0de72e36068ed72798c6fd48e6";
sha256 = "0fp4yp50n5v5zx3a7afh9wip4nwcfhmdgdzwpnl79jvild1z9fgh";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-easy-align-2017-06-03";
src = fetchgit {
url = "https://github.com/junegunn/vim-easy-align";
rev = "1cd724dc239c3a0f7a12e0fac85945cc3dbe07b0";
sha256 = "0bqk1sdqamfgagh31a60c7gvvsvjpg1xys7ivqh62iqlny5i9774";
};
dependencies = [];
};
vim-dashboard = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-dashboard-2017-08-08";
src = fetchgit {
url = "https://github.com/junegunn/vim-github-dashboard";
rev = "054d7c69d9882a6ffccedd6e43623e184958d3b6";
sha256 = "1ns6dd8719hqrkqnxd52ssi7gxjxni7w4l1ih7ag72d62qzw0p8y";
};
dependencies = [];
};
2015-10-02 08:26:46 +00:00
vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-04-23 05:47:51 +00:00
name = "vim-peekaboo-2017-03-20";
2015-10-02 08:26:46 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/junegunn/vim-peekaboo";
2017-04-23 05:47:51 +00:00
rev = "a7c940b15b008afdcea096d3fc4d25e3e431eb49";
sha256 = "1rc4hr6vwj2mmrgz8lifxf9rvcw1rb5dahq649yn8ccw03x8zn6m";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-01-04 04:19:04 +00:00
name = "vim-eighties-2016-12-15";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/justincampbell/vim-eighties";
2017-01-04 04:19:04 +00:00
rev = "1a6ea42ead1e31524ec94cfefb6afc1d8dacd170";
sha256 = "1yh1kny28c7f5qm52y7xd5aj4mycksfb0x1zvcb37c73ycdxc1v2";
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2015-06-01 10:14:47 +00:00
};
2018-01-25 13:36:14 +00:00
vim-niceblock = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-03-12 10:45:03 +00:00
name = "vim-niceblock-2018-01-30";
2018-01-25 13:36:14 +00:00
src = fetchgit {
url = "https://github.com/kana/vim-niceblock";
2018-03-12 10:45:03 +00:00
rev = "178629a8b81da2fa614bd6c19e7797e325ee9153";
sha256 = "1bz8qjnwk3gz9h0194g3qqga91i4k78r9s1xymn2fv35llrfsdx0";
2018-01-25 13:36:14 +00:00
};
dependencies = [];
};
2018-01-25 13:36:58 +00:00
vim-operator-replace = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-operator-replace-2015-02-25";
src = fetchgit {
url = "https://github.com/kana/vim-operator-replace";
rev = "1345a556a321a092716e149d4765a5e17c0e9f0f";
sha256 = "07cibp61zwbzpjfxqdc77fzrgnz8jhimmdhhyjr0lvgrjgvsnv6q";
};
dependencies = [];
};
2018-01-25 13:37:50 +00:00
vim-operator-user = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-operator-user-2015-02-17";
src = fetchgit {
url = "https://github.com/kana/vim-operator-user";
rev = "c3dfd41c1ed516b4b901c97562e644de62c367aa";
sha256 = "16y2fyrmwg4vkcl85i8xg8s6m39ca2jvgi9qm36b3vzbnkcifafb";
};
dependencies = [];
};
vim-tabpagecd = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-tabpagecd-2013-11-29";
src = fetchgit {
url = "https://github.com/kana/vim-tabpagecd";
rev = "8b71a03a037608fa5918f5096812577cec6355e4";
sha256 = "1mr6s2hvsf2a2nkjjvq78c9isfxk2k1ih890w740srbq6ssj0npm";
};
dependencies = [];
};
vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-coffee-script-2018-02-27";
src = fetchgit {
url = "https://github.com/kchmck/vim-coffee-script";
rev = "9e3b4de2a476caeb6ff21b5da20966d7c67a98bb";
sha256 = "1yzhyi12r508r2yjkzbcnddv3q4whjf3kchp23xs0snhwd9b981x";
};
dependencies = [];
};
swift-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "swift-vim-2018-04-20";
src = fetchgit {
url = "https://github.com/keith/swift.vim";
rev = "404df978f9830d9cf0a1f5002cb02f594e3e8996";
sha256 = "03xhzljzcfm0678d6i8j5493pi5knav1hx0jldgn3hish892pfr3";
};
dependencies = [];
};
rainbow_parentheses-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "rainbow_parentheses-vim-2013-03-04";
src = fetchgit {
url = "https://github.com/kien/rainbow_parentheses.vim";
rev = "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695";
sha256 = "1qw84imlhq4654mxazj7j3sp5g1j3yjxi496i08iix06dm15m5s7";
};
dependencies = [];
};
fastfold = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "fastfold-2018-06-02";
src = fetchgit {
url = "https://github.com/konfekt/fastfold";
rev = "4150ebdc6e226e8797d42dcabb7463952de9dc30";
sha256 = "0mdb77np2vf564q18fvj1klr99pwrx2sw0jhxify9g7i0177qs4r";
};
dependencies = [];
};
vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-signature-2018-07-06";
src = fetchgit {
url = "https://github.com/kshenoy/vim-signature";
rev = "6bc3dd1294a22e897f0dcf8dd72b85f350e306bc";
sha256 = "08m5dg77yavria7n7iajkj4kqaw848763680003j2gbrjlhpprpm";
};
dependencies = [];
};
vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-gista-2017-02-20";
src = fetchgit {
url = "https://github.com/lambdalisue/vim-gista";
rev = "b6cd41d0eb480cd79e84f3da3703613d0cf94a6c";
sha256 = "0bkzbppd3jdci4yvifb4sh05q20qn8cr3j9kqhxyc703s0l0lk2s";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
latex-box = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-15 22:43:54 +00:00
name = "latex-box-2015-06-01";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/latex-box-team/latex-box";
2015-06-15 22:43:54 +00:00
rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
sha256 = "1z4mdy47cpwcdhvy8mr72vhlybxn1y59yd3ixf6ids1bzpkrd7zl";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
};
2017-02-12 22:46:43 +00:00
typescript-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-03-12 10:45:03 +00:00
name = "typescript-vim-2018-03-08";
2017-02-12 22:46:43 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/leafgarland/typescript-vim";
2018-03-12 10:45:03 +00:00
rev = "e25636b44211a4be7b089bfed7cf09aa7dd086f5";
sha256 = "1i422j4za5xwcv3zz7cjw523nnh5q652c04phqp681lgdmgqszh4";
2017-02-12 22:46:43 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-01-04 04:19:04 +00:00
name = "vim-jinja-2016-11-16";
2015-06-01 10:14:47 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/lepture/vim-jinja";
2017-01-04 04:19:04 +00:00
rev = "8d330a7aaf0763d080dc82204b4aaba6ac0605c6";
sha256 = "1n62ga02rcj7jjgzvwr46pckj59dc1zqahjgampjcwdd8vf4mg3q";
2015-06-01 10:14:47 +00:00
};
dependencies = [];
};
2015-10-02 08:26:46 +00:00
vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimtex-2018-07-13";
2015-10-02 08:26:46 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/lervag/vimtex";
rev = "e3dabe0a369dac556508ac5d1132979d654bc753";
sha256 = "10wkfh106xc89bk72n0xc2xa7iva74p4pj0n9wfd3dbspagrf9j2";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
cosco-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "cosco-vim-2018-02-15";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "https://github.com/lfilho/cosco.vim";
rev = "434dc68b93b8f42babe1887a269145ce39c97edf";
sha256 = "1ng91nkkd9rgyihp4dvzrj7drm31d9r2vx4id1n8v6gc1rx3qasv";
};
dependencies = [];
};
vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-easymotion-2018-06-05";
src = fetchgit {
url = "https://github.com/lokaltog/vim-easymotion";
2018-06-17 19:47:00 +00:00
rev = "1a0244c90c3ff46219cf9597bb13662be4232407";
sha256 = "1gsfn4fgivfg821wmnrdzpmqdimjkvkqi3gwr0nwf07ygjbr2csy";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
2017-02-12 22:46:43 +00:00
vim-lawrencium = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-lawrencium-2017-01-10";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/ludovicchabant/vim-lawrencium";
2017-02-12 22:46:43 +00:00
rev = "88077183e1f5a9a1f741aeab7a1374cfed9e917f";
sha256 = "0z31v93wjycq4lqvbl1jzxi7i5i1vl919m4dyyzphybcqrjjpnab";
};
dependencies = [];
};
rainbow = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "rainbow-2018-06-19";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/luochen1990/rainbow";
rev = "549724c2123c5a06834676963be0d76d5c37abc1";
sha256 = "0hh0w337qw5yk9flk4iz4vfpa4q13blvyv10hgbfrqy72s30gpdf";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-04-23 05:47:51 +00:00
name = "vim-xkbswitch-2017-03-27";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/lyokha/vim-xkbswitch";
2017-04-23 05:47:51 +00:00
rev = "a85ebddb9038e6b05138c48868a319a9e13d1868";
sha256 = "0v0wckkvsj3pd3a5lj35dqwlvgr1kfz0x6rpnx28mzrcg05p19fr";
};
2015-06-15 22:43:54 +00:00
dependencies = [];
2015-06-07 12:59:38 +00:00
patchPhase = ''
substituteInPlace plugin/xkbswitch.vim \
--replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so
'';
2015-06-01 10:14:47 +00:00
buildInputs = [ xkb_switch ];
};
2015-06-01 10:14:47 +00:00
2017-02-12 22:46:43 +00:00
vim-highlightedyank = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-highlightedyank-2018-06-01";
2017-02-12 22:46:43 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/machakann/vim-highlightedyank";
2018-06-17 19:47:00 +00:00
rev = "eafae05916e670da8bc99e44b1534cd8c7f87c7a";
sha256 = "1z6xjb9244fgnhmw21m7y3bd9vs9gvxbb9ig73iwy0ny886hjlnk";
};
dependencies = [];
};
tagbar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tagbar-2017-12-17";
src = fetchgit {
url = "https://github.com/majutsushi/tagbar";
rev = "387bbadda98e1376ff3871aa461b1f0abd4ece70";
sha256 = "0srmslg0v1a7zhzz0wgzgv7jyr0j3q9m766qzb7zimkkb32fcbx9";
};
dependencies = [];
};
vim-jsbeautify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-jsbeautify-2018-01-31";
src = fetchgit {
url = "https://github.com/maksimr/vim-jsbeautify";
rev = "7a55bffa7d87e4f1ed11650e56a1361779b39624";
sha256 = "01jvc3nkvmhw9n7m9x96ax1ndzw78ryjmgrvkqb7gja1xb8i8jqq";
2017-02-12 22:46:43 +00:00
};
dependencies = [];
};
2017-07-08 01:24:03 +00:00
Jenkinsfile-vim-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Jenkinsfile-vim-syntax-2018-04-03";
2017-07-08 01:24:03 +00:00
src = fetchgit {
url = "https://github.com/martinda/Jenkinsfile-vim-syntax";
rev = "45418b171e06f63e0814cac6a656832384708aba";
sha256 = "0vfx22fzp0894lclmbsp6l8apvw0znd3cbah8r7r5la9qzyiwi4p";
};
dependencies = [];
};
gist-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "gist-vim-2016-10-10";
src = fetchgit {
url = "https://github.com/mattn/gist-vim";
rev = "f0d63579eab7548cf12f979dc52ef5a370ecbe63";
sha256 = "06nix49j4inxy3rkcv32f4ka89g4crqwfqnrm3b76iwwky8m2p17";
};
dependencies = [];
};
webapi-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "webapi-vim-2018-03-14";
src = fetchgit {
url = "https://github.com/mattn/webapi-vim";
rev = "252250381a9509257bfb06b9f95441e41e3e23b5";
sha256 = "0g37d1i6rxsj6f31g9jy2bhr8ng3jwmnvqqcmw19vbql4v56zq6a";
};
dependencies = [];
};
undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "undotree-2018-07-02";
src = fetchgit {
url = "https://github.com/mbbill/undotree";
rev = "a80159c9f5c238575b63984b8bc610bc5de6b233";
sha256 = "10l091qbigcj053l65bs3cdnysasl7f2qdbsk8bk6k0xj7rrpgzl";
2017-07-08 01:24:03 +00:00
};
dependencies = [];
};
forms = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "forms-2012-11-28";
src = fetchgit {
url = "https://github.com/megaannum/forms";
rev = "b601e03fe0a3b8a43766231f4a6217e4492b4f75";
sha256 = "19kp1i5c6jmnpbsap9giayqbzlv7vh02mp4mjvicqj9n0nfyay74";
};
dependencies = ["self"];
};
2017-07-23 19:21:58 +00:00
self = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "self-2014-05-28";
src = fetchgit {
url = "https://github.com/megaannum/self";
rev = "2ed666b547eddee6ae1fcc63babca4ba0b66a59f";
sha256 = "1gcwn6i5i3msg7hrlzsnv1bs6pm4jz9cff8ppaz2xdj8xv9qy6fn";
};
dependencies = [];
};
robotframework-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "robotframework-vim-2017-04-14";
src = fetchgit {
url = "https://github.com/mfukar/robotframework-vim";
rev = "75d5b371a4da2a090a2872d55bd0dead013f334e";
sha256 = "091ac5rq6f1a7j2q3dy9rc00vckv21m4wd29ijj63jannr02v5ad";
};
dependencies = [];
};
2018-01-25 11:50:40 +00:00
vim-grepper-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-grepper-git-2018-04-24";
2018-01-25 11:50:40 +00:00
src = fetchgit {
url = "https://github.com/mhinz/vim-grepper.git";
2018-06-17 19:47:00 +00:00
rev = "04d659c9e0a57e0c3e989069601d2a98df0386c4";
sha256 = "16k5ahcn9i4wvlhw16j0gfgxw0clry72l78lk28qmx9p2gh1ka3g";
};
dependencies = [];
};
vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-signify-2018-07-08";
src = fetchgit {
url = "https://github.com/mhinz/vim-signify";
rev = "9303070b022c4a642a8d35361e3680622c525144";
sha256 = "0was67gn22dn361jg1qc4iscdkm0cg65dprfyd7r6ifhi6v01jmz";
2018-01-25 11:50:40 +00:00
};
dependencies = [];
};
vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-startify-2018-07-03";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/mhinz/vim-startify";
rev = "7bbc46e1c2eb9e2e6e4e5a34a634b40d85eb1bde";
sha256 = "1q5gxyd85xfhl4i8gzw23dq36bg14lld5i91vnz8xys25idzjs1s";
2017-03-03 22:56:32 +00:00
};
dependencies = [];
};
vim-indent-object = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-indent-object-2018-04-08";
2017-03-03 22:56:32 +00:00
src = fetchgit {
url = "https://github.com/michaeljsmith/vim-indent-object";
rev = "5c5b24c959478929b54a9e831a8e2e651a465965";
sha256 = "1kmwnz0jxjkvfzy06r7r73pcxfcyjp8p8m2d6qrhjfvzidgfhw19";
};
dependencies = [];
};
2017-05-19 13:28:45 +00:00
ack-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-03-12 10:45:03 +00:00
name = "ack-vim-2018-02-28";
2017-05-19 13:28:45 +00:00
src = fetchgit {
url = "https://github.com/mileszs/ack.vim";
2018-03-12 10:45:03 +00:00
rev = "36e40f9ec91bdbf6f1adf408522a73a6925c3042";
sha256 = "0yppr89hd1jyp0pj56hxdjbn32sr7pj3mihd18wxispvl5dqd6fm";
2017-05-19 13:28:45 +00:00
};
dependencies = [];
};
2017-07-25 13:05:23 +00:00
vim-yapf = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-yapf-2018-06-05";
2017-07-25 13:05:23 +00:00
src = fetchgit {
url = "https://github.com/mindriot101/vim-yapf";
2018-06-17 19:47:00 +00:00
rev = "cae79733a1a39732c5305d4a89cd093d17cb917d";
sha256 = "16bmzvzks6kbqm6dk908k23b9wj7qf3x8bz3kikrzj27s0p7s9cc";
2017-07-25 13:05:23 +00:00
};
dependencies = [];
buildPhase = ''
substituteInPlace ftplugin/python_yapf.vim \
2017-12-09 10:27:16 +00:00
--replace '"yapf"' '"${python3Packages.yapf}/bin/yapf"'
2017-07-25 13:05:23 +00:00
'';
};
2015-09-21 20:01:11 +00:00
lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-04-23 05:47:51 +00:00
name = "lushtags-2017-04-19";
2015-09-21 20:01:11 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/mkasa/lushtags";
2017-04-23 05:47:51 +00:00
rev = "fd7fa5a0162d9aa159559880d5ba4731e180eeaf";
sha256 = "1si5n07k4r8kji4whglav9q59ksv6bi5v58xbpc2l5bavlk8kn6n";
};
dependencies = [];
};
gruvbox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "gruvbox-2018-02-25";
src = fetchgit {
url = "https://github.com/morhetz/gruvbox";
rev = "cb4e7a5643f7d2dd40e694bcbd28c4b89b185e86";
sha256 = "12qkq1x96bm1cmqfg6sb8jxpl2b6gwvhc5qn3gva6vl4nx3ianqi";
};
dependencies = [];
};
hlint-refactor-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "hlint-refactor-vim-2015-12-05";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/mpickering/hlint-refactor-vim";
rev = "fffb044ecef854a82c5c2efda252e09044ba03e0";
sha256 = "0z8d31arfy9aidg1dwj5msnnx799d9r7njkgh51z695w6ayxn6p8";
2015-09-21 20:01:11 +00:00
};
dependencies = [];
};
2016-08-29 12:40:12 +00:00
vim-indent-guides = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-indent-guides-2018-05-14";
2016-08-29 12:40:12 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/nathanaelkane/vim-indent-guides";
2018-06-17 19:47:00 +00:00
rev = "54d889a63716ee2f1818aa2ec5082db47147147b";
sha256 = "0ahlbjv2ibhhnf9zqn85b2sh3wf9l0kmg2qmavz3z5fmf8sqljj2";
2016-08-29 12:40:12 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-stylish-haskell = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-stylish-haskell-2015-05-10";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/nbouscal/vim-stylish-haskell";
2015-06-01 10:14:47 +00:00
rev = "c664376ba814de3f87cb7641f90b2c6a9dd53671";
2016-02-25 09:17:06 +00:00
sha256 = "1xm5ark2mwphznv3xsyzgcldnr52i5jzk1pfqdh0080j07aama8j";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-easygit = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-easygit-2018-07-08";
src = fetchgit {
url = "https://github.com/neoclide/vim-easygit";
rev = "9770370a35838f70eda91d0c3006d0563ccc8d2a";
sha256 = "1a42s0nymakz20rjrpwmiqpnlndrkdakzbm53aclzcs61i9zq2k8";
};
dependencies = [];
};
haskell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "haskell-vim-2018-05-22";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/neovimhaskell/haskell-vim";
2018-06-17 19:47:00 +00:00
rev = "b1ac46807835423c4a4dd063df6d5b613d89c731";
sha256 = "1vqj3r2v8skffywwgv4093ww7fm540437j5qz7n8q8787bs5w0br";
};
dependencies = [];
};
2017-01-04 04:19:04 +00:00
cpsm = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-03-12 10:45:03 +00:00
name = "cpsm-2018-02-01";
2017-01-04 04:19:04 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/nixprime/cpsm";
2018-03-12 10:45:03 +00:00
rev = "8a4a0a05162762b857b656d51b59a5bf01850877";
sha256 = "0v44gf9ygrqc6rpfpiq329jija4icy0iy240yk30c0r04mjahc0b";
2017-01-04 04:19:04 +00:00
};
dependencies = [];
buildInputs = [
python3
stdenv
cmake
boost
icu
2018-04-08 21:26:53 +00:00
ncurses
2017-01-04 04:19:04 +00:00
];
buildPhase = ''
patchShebangs .
export PY3=ON
./install.sh
'';
};
vim-iced-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-iced-coffee-script-2013-12-27";
src = fetchgit {
url = "https://github.com/noc7c9/vim-iced-coffee-script";
rev = "e42e0775fa4b1f8840c55cd36ac3d1cedbc1dea2";
sha256 = "14yfirny359rlrr082il2ys3hxiyrbbk794rdxrs2lasjy8rb1f7";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
shabadou-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "shabadou-vim-2016-07-19";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/osyo-manga/shabadou.vim";
rev = "7d4bfed1ea8985ae125df3d1403cc19e252443e1";
sha256 = "1kvik1yf7yjg9jdmdw38yhkksxg0n3nry02banwik7wgjnpvg870";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-textobj-multiblock = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-textobj-multiblock-2014-06-02";
src = fetchgit {
url = "https://github.com/osyo-manga/vim-textobj-multiblock";
rev = "670a5ba57d73fcd793f480e262617c6eb0103355";
sha256 = "1s71hdr73cl8yg9mrdflvzrdccpiv7qrlainai7gqw30r1hfhfzf";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-12-07 15:26:37 +00:00
name = "vim-watchdogs-2017-12-03";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/osyo-manga/vim-watchdogs";
2017-12-07 15:26:37 +00:00
rev = "a6415c2d928af8c1aacdbce9b1ed8d315891eb03";
sha256 = "0n6aqsgn0q1qgpj4yznqwbsbbk2a077gnjlq86ii3jhkzh5fzcff";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-javascript = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-javascript-2018-07-14";
src = fetchgit {
url = "https://github.com/pangloss/vim-javascript";
rev = "39e332a3c36c0115e1eab85c34cf121b7585869d";
sha256 = "04ycwh298i213zw0zvj99igfmxf36swycryapsgp9jrh9jjd9hmw";
};
dependencies = [];
};
2016-12-13 19:35:22 +00:00
vim-markdown = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-markdown-2018-06-05";
2016-12-13 19:35:22 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/plasticboy/vim-markdown";
2018-06-17 19:47:00 +00:00
rev = "6d2cb3c06cd546fd4bee4136679db3a3d5de97fa";
sha256 = "17izjzgpwpl6i1vvz2hcd7ympgxyjmsb0k62rhvl15jmx06c3ysz";
2016-12-13 19:35:22 +00:00
};
dependencies = [];
};
2017-03-03 23:15:26 +00:00
python-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "python-mode-2018-06-13";
2017-03-03 23:15:26 +00:00
src = fetchgit {
url = "https://github.com/python-mode/python-mode";
2018-06-17 19:47:00 +00:00
rev = "bb746d0d0cba9adedbac856429e37a0dbfc599c6";
sha256 = "1zlzlfz4arb2gi9ba5mdkpfkirhyk21g18cwx1f150b14baq734f";
2017-03-03 23:15:26 +00:00
};
dependencies = [];
};
2016-02-25 09:17:06 +00:00
vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-racer-2018-05-13";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/racer-rust/vim-racer";
2018-06-17 19:47:00 +00:00
rev = "cd663ddacc89fb3cbbb9649f7cd36528960b1fe9";
sha256 = "1k75ypgiy13l28mndi6p95lc818k04imlm7xk0y9sck8bsny1vhi";
2016-06-14 21:03:59 +00:00
};
dependencies = [];
};
awesome-vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "awesome-vim-colorschemes-2018-01-20";
src = fetchgit {
url = "https://github.com/rafi/awesome-vim-colorschemes";
rev = "8d2b6657bdbe4f7253e320c741bc4c1fc2f2f41d";
sha256 = "1wfm6rsmyqldxwcz0ic4rq7kf00fgsx00rg42cl9yya35nqiri2z";
};
dependencies = [];
};
2016-06-14 21:03:59 +00:00
purescript-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "purescript-vim-2018-07-05";
2016-06-14 21:03:59 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/raichoo/purescript-vim";
rev = "ab8547cef5827f046d43ba57203acb6692b7ef06";
sha256 = "1pp7h77qqhgshf2x3hh73gnb4ya8jamqm75spbnn95piznd03k33";
};
dependencies = [];
};
vim-pencil = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-pencil-2017-06-14";
src = fetchgit {
url = "https://github.com/reedes/vim-pencil";
rev = "2dcd974b7255e4af83cf79a208f04a3489065e22";
sha256 = "0swc6sszj1f4h5hgi7z7j1xw54d69mg7f18rk2kf5y453qwg4jc0";
};
dependencies = [];
};
2018-01-25 13:44:50 +00:00
vim-wordy = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-03-12 10:45:03 +00:00
name = "vim-wordy-2018-03-10";
2018-01-25 13:44:50 +00:00
src = fetchgit {
url = "https://github.com/reedes/vim-wordy";
2018-03-12 10:45:03 +00:00
rev = "14b9dbf76a82e29273a74768573900361200467f";
sha256 = "0qx3ngw4k7bgzmxpv1x4lkq3njm3zcb1j5ph6fx26wgagxhiaqhk";
2018-01-25 13:44:50 +00:00
};
dependencies = [];
};
2018-01-25 13:45:53 +00:00
committia-vim-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "committia-vim-git-2018-07-14";
2018-01-25 13:45:53 +00:00
src = fetchgit {
url = "https://github.com/rhysd/committia.vim.git";
rev = "6aa77b9161e75828d0be2ba40ed420cbf7a55279";
sha256 = "0sr7wzccj805fnc48qgcshp8rypz3vb8507pkc1r3pn7wbxqkni1";
2018-01-25 13:45:53 +00:00
};
dependencies = [];
};
vim-grammarous = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-grammarous-2018-06-22";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/rhysd/vim-grammarous";
rev = "0d8a0272389a32bd49e74bb00527c02f9aca19a8";
sha256 = "0ji18hjhp1gx147z682b4xy1w02kqcr8rb5frccyqn4kdpqhqvbk";
2017-05-21 12:56:49 +00:00
};
dependencies = [];
# use `:GrammarousCheck` to initialize checking
# In neovim, you also want to use set
# let g:grammarous#show_first_error = 1
# see https://github.com/rhysd/vim-grammarous/issues/39
patches = [
(substituteAll {
src = ./patches/vim-grammarous/set_default_languagetool.patch;
inherit languagetool;
})
];
2017-05-21 12:56:49 +00:00
};
vim-operator-surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-operator-surround-2017-12-23";
src = fetchgit {
url = "https://github.com/rhysd/vim-operator-surround";
rev = "001c0da077b5b38a723151b19760d220e02363db";
sha256 = "0c6w6id57faw6sjf5wvw9qp2a4i7xj65q0c4hjs0spgzycv2wpkh";
};
dependencies = [];
};
2017-05-21 12:56:49 +00:00
vim-puppet = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-04-17 18:40:51 +00:00
name = "vim-puppet-2018-04-12";
2017-05-21 12:56:49 +00:00
src = fetchgit {
url = "https://github.com/rodjek/vim-puppet";
2018-04-17 18:40:51 +00:00
rev = "dc1f681045c4d8bd126063ce000f7cc7b2f95097";
sha256 = "18z2d2wpn5c3g857wprmdwp5pdb719dciyy0682hqpw8lfjn6zhv";
};
dependencies = [];
};
2017-09-19 00:27:03 +00:00
nvim-cm-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "nvim-cm-racer-2017-07-27";
src = fetchgit {
url = "https://github.com/roxma/nvim-cm-racer";
rev = "2a8a4a49fa58c5dac9e0bed9511f6928930cacd2";
sha256 = "1yljxwypgn91084yyicbc2qprn31ld7s4drvnddzczyhzq5m2gpx";
};
dependencies = [];
};
nvim-completion-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "nvim-completion-manager-2018-04-18";
src = fetchgit {
url = "https://github.com/roxma/nvim-completion-manager";
2018-06-17 19:47:00 +00:00
rev = "3ef5ade36e7321aace4e9e22da216202bdcd65f1";
sha256 = "0vfcnvdcxhs3in4pwcqjb5h3ns7ik53n4xb1h9r94w1gfw00lh1l";
};
dependencies = [];
};
rust-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "rust-vim-2018-07-17";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/rust-lang/rust.vim";
rev = "2fa74427456a68e9e90f542567f851df50d48a8c";
sha256 = "0vqvw5czwy3v99dv5gbgy8ljg31qhsnhqjfl0a4dfij6p66xyi46";
};
dependencies = [];
};
vim-devicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-devicons-2018-06-21";
src = fetchgit {
url = "https://github.com/ryanoasis/vim-devicons";
rev = "ea5bbf0e2a960965accfa50a516773406a5b6b26";
sha256 = "1v365j4an1k82gk06ikgqy2dw0ir80kj0svs1fymgklc117xgqsg";
};
dependencies = [];
};
neoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neoformat-2018-07-16";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/sbdchd/neoformat";
rev = "f20e73193f2260d4437d160759d6b623a74a5a35";
sha256 = "0460v5h82zsgslqxkiwf2qbkah15hf3p33ddvcipfqg0rnrbwynp";
};
dependencies = [];
};
nerdcommenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "nerdcommenter-2018-06-21";
src = fetchgit {
url = "https://github.com/scrooloose/nerdcommenter";
rev = "9a32fd2534427f7a1dcfe22e9c0ea6b67b6dbe78";
sha256 = "0s862kzhvv9qpr7gxd3h52hczjvm55zyff5qn0z5095072pr3wjx";
};
dependencies = [];
};
nerdtree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "nerdtree-2018-06-15";
src = fetchgit {
url = "https://github.com/scrooloose/nerdtree";
2018-06-17 19:47:00 +00:00
rev = "d6032c876c6d6932ab7f07e262a16c9a85a31d5b";
sha256 = "0s7z60rcdkziqqjc45adfqykpznv7aagfyfi5ybsxi5w4b8f2b9s";
};
dependencies = [];
};
syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "syntastic-2018-07-16";
src = fetchgit {
url = "https://github.com/scrooloose/syntastic";
rev = "0dde090ed41b383b1fa56f8db49d89e0735b1ca9";
sha256 = "027g3wmfdrhb65krlfs89xk3imbm2mgzb2ddv7xwrhch736nvb2q";
2017-06-11 11:09:29 +00:00
};
dependencies = [];
};
deoplete-rust = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-07-25 12:44:09 +00:00
name = "deoplete-rust-2017-07-18";
2017-06-11 11:09:29 +00:00
src = fetchgit {
url = "https://github.com/sebastianmarkow/deoplete-rust";
2017-07-25 12:44:09 +00:00
rev = "0a86e502113910c33448b337c4d50cabea120d25";
sha256 = "0wsck83jns40ny3740vwjhc8g5bh6zl71hkirbjxy6n4xgixa54h";
};
dependencies = [];
};
vim-polyglot = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-polyglot-2018-07-08";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/sheerun/vim-polyglot";
rev = "055f7710b65dfa2df52fc0b5be2486ae36ac5751";
sha256 = "1q1aw0sapr2zgrxbh97g6hj22f2xym3apzfxw5xxmqzmjc0kiq4p";
2017-02-12 22:46:43 +00:00
};
dependencies = [];
};
2018-01-25 13:50:18 +00:00
context_filetype-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "context_filetype-vim-2018-04-01";
2018-01-25 13:50:18 +00:00
src = fetchgit {
url = "https://github.com/shougo/context_filetype.vim";
rev = "9ed76080795ef76f52b8c9ae4432df7cd81abc5a";
sha256 = "137ki4104j4ch54k9n1l1xd75vbxqssi1fdckzv8kd07m5i159i2";
2018-01-25 13:50:18 +00:00
};
dependencies = [];
};
2018-01-25 13:50:58 +00:00
denite-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "denite-nvim-2018-07-19";
2018-01-25 13:50:58 +00:00
src = fetchgit {
url = "https://github.com/shougo/denite.nvim";
rev = "0cab5543d755be4a6c9d331672b07235f8473f1f";
sha256 = "1r9a29fjmab7r10f5c39xdmbpq14jc6lwyj7d63b5p2dnlva2wr0";
2018-01-25 13:50:58 +00:00
};
dependencies = [];
};
2018-01-25 13:52:18 +00:00
echodoc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "echodoc-vim-2018-03-26";
2018-01-25 13:52:18 +00:00
src = fetchgit {
url = "https://github.com/shougo/echodoc.vim";
rev = "f1f711bc814165cf5b09b56fd5d733917ed1c015";
sha256 = "0l0sm862fbr8p8m4wykx1riidxgp233cq6r2zdm2l7gvmqyj3zcr";
2018-01-25 13:52:18 +00:00
};
dependencies = [];
};
2018-01-25 13:52:47 +00:00
neco-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neco-syntax-2017-10-01";
src = fetchgit {
url = "https://github.com/shougo/neco-syntax";
rev = "98cba4a98a4f44dcff80216d0b4aa6f41c2ce3e3";
sha256 = "1cjcbgx3h00g91ifgw30q5n97x4nprsr4kwirydws79fcs4vkgip";
};
dependencies = [];
};
2017-02-12 22:46:43 +00:00
neco-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-11-06 11:24:35 +00:00
name = "neco-vim-2017-10-01";
2017-02-12 22:46:43 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/shougo/neco-vim";
2017-11-06 11:24:35 +00:00
rev = "f5397c5e800d65a58c56d8f1b1b92686b05f4ca9";
sha256 = "0yb7ja6qgrazszk4i01cwjj00j9vd43zs2r11b08iy8n10jnzr73";
};
dependencies = [];
2016-02-25 09:17:06 +00:00
};
2015-06-01 10:14:47 +00:00
neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neocomplete-vim-2018-03-28";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/shougo/neocomplete.vim";
rev = "4be617947f3fcf2d725fab20b0e12f8b46c9e2f3";
sha256 = "00ns46gy726w74nmnzhqnyh10jnpr04453v3rclswxgcvgma82b8";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
2018-01-25 13:53:18 +00:00
neoinclude-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "neoinclude-vim-2018-05-22";
2018-01-25 13:53:18 +00:00
src = fetchgit {
url = "https://github.com/shougo/neoinclude.vim";
2018-06-17 19:47:00 +00:00
rev = "2fa77b9211d3f10c29559b715b6863da67ae7d3a";
sha256 = "0pdahb2z9q4dk67xkwvaqrlpai86slhncfb4gn88x40dlnd7rkbg";
2018-01-25 13:53:18 +00:00
};
dependencies = [];
};
2018-01-25 13:53:39 +00:00
neomru-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neomru-vim-2017-10-01";
src = fetchgit {
url = "https://github.com/shougo/neomru.vim";
rev = "97540f54fa20b94daf306f0c1f3cce983bbf7a1d";
sha256 = "15d5hmh5v3hnjnfb5736n45rh5nyq41vqjp1cz4ls2rxmmfi3xa7";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "neosnippet-snippets-2018-06-17";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/shougo/neosnippet-snippets";
2018-06-17 19:47:00 +00:00
rev = "e5946e9ec4c68965dbabfaaf2584b1c057738afd";
sha256 = "114w2vm28075bz85867lz0rzam1m0wk7dkbkm1lm0jbknbpk606n";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neosnippet-vim-2018-07-19";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/shougo/neosnippet.vim";
rev = "2959ae99f6e8f422e7d9062fd0a3cd692d2221fb";
sha256 = "0zdyfc9lrp8g76b6qigci6dlxz0zqpqf5y9887x2zdy631dksfi4";
2015-09-01 02:10:53 +00:00
};
dependencies = [];
};
2018-01-25 13:54:22 +00:00
neoyank-vim-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neoyank-vim-git-2018-03-26";
2018-01-25 13:54:22 +00:00
src = fetchgit {
url = "https://github.com/shougo/neoyank.vim.git";
rev = "ea3cd47ccb40cb2e26cb607d28475aa0fdb26fef";
sha256 = "1zbf8062rpk56nd1zxqhwa8bdpxl9zp887l9nm4s9hc4ndsk4928";
2018-01-25 13:54:22 +00:00
};
dependencies = [];
};
2018-01-25 13:55:25 +00:00
tabpagebuffer-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tabpagebuffer-vim-2014-09-30";
src = fetchgit {
url = "https://github.com/shougo/tabpagebuffer.vim";
rev = "4d95c3e6fa5ad887498f4cbe486c11e39d4a1fbc";
sha256 = "1z6zlpzkhwy1p2pmx9qrwb91dp9v4yi8jrdvm1if2k79ij4sl08f";
};
dependencies = [];
};
2015-09-01 02:10:53 +00:00
unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "unite-vim-2018-06-17";
2015-09-01 02:10:53 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/shougo/unite.vim";
2018-06-17 19:47:00 +00:00
rev = "c175ba7df239a5971e4c189ecbc9486b160fbde2";
sha256 = "16j5vhmqs04y5rps5g86bgpf91w067gyw9rz47hf0y0a52niy436";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-03-12 10:45:03 +00:00
name = "vimproc-vim-2018-01-07";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/shougo/vimproc.vim";
2018-03-12 10:45:03 +00:00
rev = "2300224d366642f4f8d6f88861535d4ccbe20143";
sha256 = "0b8ljqnix8bs667bpymg3s0g5f49fnphgddl6196dj6jvdfn1xia";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
buildInputs = [ which ];
buildPhase = ''
substituteInPlace autoload/vimproc.vim \
--replace vimproc_mac.so vimproc_unix.so \
--replace vimproc_linux64.so vimproc_unix.so \
--replace vimproc_linux32.so vimproc_unix.so
2015-06-01 10:14:47 +00:00
make -f make_unix.mak
'';
};
2015-10-02 09:36:09 +00:00
gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-05-21 12:56:49 +00:00
name = "gundo-vim-2017-05-09";
2015-10-02 09:36:09 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/sjl/gundo.vim";
2017-05-21 12:56:49 +00:00
rev = "46c443ee9d5854320eb965a1fdee781ba83a070e";
sha256 = "0adk7agzmbfv342zw6lc8jad6yjs1wap4c0ca98s0qm2bs0r1hl2";
2015-10-02 09:36:09 +00:00
};
dependencies = [];
};
last256 = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "last256-2017-06-11";
src = fetchgit {
url = "https://github.com/sk1418/last256";
rev = "d29320c1fe715b47edaa1be068201ea5a54ab0c0";
sha256 = "16njh0p1j166dnf92110vlrj7gmrbsfkbkd8k6s9gfqjzbgd25jv";
};
dependencies = [];
};
2017-02-12 22:46:43 +00:00
alchemist-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "alchemist-vim-2018-06-25";
2017-02-12 22:46:43 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/slashmili/alchemist.vim";
rev = "5575fc8e18695b050b1c4d51623ae37f12ff7648";
sha256 = "0s1x0avshxfrqj9vd8bahkw10sn9hmajwch285zib9aynqp5x2ma";
2017-02-12 22:46:43 +00:00
};
dependencies = [];
};
2018-01-25 14:00:14 +00:00
vim-smalls = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-smalls-2015-05-02";
src = fetchgit {
url = "https://github.com/t9md/vim-smalls";
rev = "9619eae81626bd63f88165e0520c467698264e34";
sha256 = "0s5z3zv220cg95yky2av6w0jmpc56ysyhsx0596ksvgz5jwhpbad";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-04-23 05:47:51 +00:00
name = "vim-hardtime-2017-03-31";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/takac/vim-hardtime";
2017-04-23 05:47:51 +00:00
rev = "d9128568afa62947b7ac8f12c22d88e3de526a6b";
sha256 = "097wzfh4n4fnsq2gx4hbmyr731ciky8qcai5aiyh2baybvwshmr5";
};
dependencies = [];
};
vim-expand-region = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-expand-region-2013-08-19";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/terryma/vim-expand-region";
rev = "966513543de0ddc2d673b5528a056269e7917276";
sha256 = "0l30wjlk4vxr16f1njnvf8aw9yg9p9jisvcxbcg3znsq5q8ix6zv";
};
dependencies = [];
};
vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-multiple-cursors-2018-07-16";
src = fetchgit {
url = "https://github.com/terryma/vim-multiple-cursors";
rev = "b9e17a51bb2d857f6a5099363232c4fc7715115d";
sha256 = "0dd9m0a33r4diwykk5nxya199zimn0n4gmp2mi8fnwk6m1f8fwnw";
};
dependencies = [];
};
vimpreviewpandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vimpreviewpandoc-2018-05-12";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/tex/vimpreviewpandoc";
2018-06-17 19:47:00 +00:00
rev = "266d14d362f6c069863b2d63edb683e802e7e3ee";
sha256 = "1qhc5vyk7vxrgq11dh1iwkz2a3zd7wfjvyirhhlpx1zx12d6l0ly";
};
dependencies = [];
};
vim-ft-diff_fold = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-ft-diff_fold-2013-02-10";
src = fetchgit {
url = "https://github.com/thinca/vim-ft-diff_fold";
rev = "89771dffd3682ef82a4b3b3e9c971b9909f08e87";
sha256 = "0bk95cxkfzamlgv1x2jb1bnfas2pmvvqgpn5fvxddf0andm8sfma";
};
dependencies = [];
};
vim-prettyprint = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-prettyprint-2016-07-16";
src = fetchgit {
url = "https://github.com/thinca/vim-prettyprint";
rev = "d6060d2b1ff1cff71714e126addd3b10883ade12";
sha256 = "0mb1ylsq4023ik9wd9iwzlynra2c320xp9h2i79bspapglgd5gk9";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-quickrun-2018-06-19";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/thinca/vim-quickrun";
rev = "825f9f195521646f7001f10cad8627c48017311f";
sha256 = "0ckcwij5y71dxrga34jxgvf41hs44p4mrd31hbmkz1qrq1i7glpa";
};
dependencies = [];
};
vim-scouter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-scouter-2014-08-10";
src = fetchgit {
url = "https://github.com/thinca/vim-scouter";
rev = "5221901d4ad6b2ef8b370b336db2aa7f69f2b6dc";
sha256 = "0fx64hj1kzrsxz96195d5lm3x88zyycbcr78819mcbgfzyxis6b8";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
2018-01-25 14:00:42 +00:00
vim-themis = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-themis-2017-12-28";
src = fetchgit {
url = "https://github.com/thinca/vim-themis";
rev = "691cd3912ba318dbd8d9fa0035fee629b424766d";
sha256 = "1mrdaah3iyg35v6cgvr3jav3386czialfcinwa3y9jy14basbqhd";
};
dependencies = [];
};
2015-09-01 02:10:53 +00:00
molokai = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-12-11 18:31:40 +00:00
name = "molokai-2015-11-11";
2015-09-01 02:10:53 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/tomasr/molokai";
2015-12-11 18:31:40 +00:00
rev = "c67bdfcdb31415aa0ade7f8c003261700a885476";
2016-02-25 09:17:06 +00:00
sha256 = "1piszjr5kyw43ac1f0jh9z88g824xknshrkchbys9qxlz7pd831s";
2015-09-01 02:10:53 +00:00
};
dependencies = [];
};
2018-03-12 15:17:03 +00:00
vim-solidity = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-04-17 18:40:51 +00:00
name = "vim-solidity-2018-04-17";
2018-03-12 15:17:03 +00:00
src = fetchgit {
url = "https://github.com/tomlion/vim-solidity";
2018-04-17 18:40:51 +00:00
rev = "569bbbedc3898236d5912fed0caf114936112ae4";
sha256 = "1qpfbbrm4gjgvbkimhpxyl4fsdqkyw4raf17nw0ibqillz2d3pxx";
};
dependencies = [];
};
tlib_vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tlib_vim-2018-04-08";
src = fetchgit {
url = "https://github.com/tomtom/tlib_vim";
rev = "ced8f3ebe85b50da2ec0e6d593e6b2e8e6bd243b";
sha256 = "08vvd1wpa9k5bid2hh279jjkir2c59ga3527qzinxngmlx8wsbhx";
};
dependencies = [];
};
vim-commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-commentary-2018-07-11";
src = fetchgit {
url = "https://github.com/tpope/vim-commentary";
rev = "8295187ea1210138c0b171d8e3ec3569936f4c1a";
sha256 = "1zgbpgl0n11b4jlgx7h7rr1jbgdib7yf8vmh62cxrdj5hrngb6h6";
2018-03-12 15:17:03 +00:00
};
dependencies = [];
};
2017-03-03 23:15:26 +00:00
vim-dispatch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-dispatch-2018-07-18";
2017-03-03 23:15:26 +00:00
src = fetchgit {
url = "https://github.com/tpope/vim-dispatch";
rev = "43760f9d8469d59fd629a97e19dce4491192cca6";
sha256 = "16kziq3y4v0nksilrblryf2vham87w9c3y133xm6zznyjsjp2x90";
2017-03-03 23:15:26 +00:00
};
dependencies = [];
};
2015-10-02 08:26:46 +00:00
vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-eunuch-2018-07-13";
2015-10-02 08:26:46 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/tpope/vim-eunuch";
rev = "e5f4f955d53e07192fb330ff272604c1b8290532";
sha256 = "0cv3j3bkapb45ywlfiz8csxmz7gnsdngwgmkrgfg6sljnsgav2za";
};
dependencies = [];
};
vim-fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-fugitive-2018-07-18";
src = fetchgit {
url = "https://github.com/tpope/vim-fugitive";
rev = "9b9a81b170040ab0061ebd5beec1f5e2e1177056";
sha256 = "189w34rjh67j1hs77284xaxq8xlhc0zrk4nnk3qnprwg5qfr4plz";
};
dependencies = [];
};
vim-pathogen = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-pathogen-2018-04-05";
src = fetchgit {
url = "https://github.com/tpope/vim-pathogen";
rev = "06da921608b971fb47603671bcafdb2843992eb3";
sha256 = "1mxkp2yqqmfl0lq6kmkl716y9x8cdm7aibb376azydxlsbqv4qmi";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
vim-repeat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-repeat-2018-07-02";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/tpope/vim-repeat";
rev = "43d2678fa59d068c815d8298331c195e850ff5a7";
sha256 = "0nb20503ka95qbx0mwhhni15drc86gfcd6kg92nf65llrvyfivk0";
};
dependencies = [];
2017-12-17 16:36:49 +00:00
};
vim-rhubarb = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-rhubarb-2018-07-19";
2017-12-17 16:36:49 +00:00
src = fetchgit {
url = "https://github.com/tpope/vim-rhubarb";
rev = "186bf27e05ab8713193b1d1210cd3c79f392445a";
sha256 = "127gv59dkw1z7lpspxk7by2pf1mqqb6jxc58g359m76lfqpkcvvv";
2017-12-17 16:36:49 +00:00
};
dependencies = [];
};
vim-sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-sensible-2018-07-16";
src = fetchgit {
url = "https://github.com/tpope/vim-sensible";
rev = "c82c6d4978be28adcf85dc1e61fa428e801bd525";
sha256 = "0w87wic0qx20h36k075lvmj53glxkcyv8hkrx5aw4xqxvbq5fk6q";
};
dependencies = [];
};
vim-sleuth = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-sleuth-2018-05-24";
src = fetchgit {
url = "https://github.com/tpope/vim-sleuth";
2018-06-17 19:47:00 +00:00
rev = "478e495d40434fb42c655ea2881c8c6b114ecd49";
sha256 = "1dicdxxfd5sywk02hbpknbr100n96qggy3zy5v520dxdknq0sccz";
};
dependencies = [];
};
2017-01-12 15:28:17 +00:00
vim-speeddating = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-06-11 11:09:29 +00:00
name = "vim-speeddating-2017-05-24";
2017-01-12 15:28:17 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/tpope/vim-speeddating";
2017-06-11 11:09:29 +00:00
rev = "a418667791f03694065948342f2d6c5cca8d0f32";
sha256 = "1wm33izawazh0dy70zjk6rkg30yrlldba5r1gypnr4barps702gw";
2017-01-12 15:28:17 +00:00
};
dependencies = [];
};
vim-surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-surround-2018-06-15";
src = fetchgit {
url = "https://github.com/tpope/vim-surround";
2018-06-17 19:47:00 +00:00
rev = "aa1f120ad3a29c27cc41d581cda3751c59343cce";
sha256 = "1vblmvmbl9k2fzm0fjlbvvbb5izyljaxg187s29cp6p4xm0frcql";
};
dependencies = [];
};
vim-vinegar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-vinegar-2018-06-20";
src = fetchgit {
url = "https://github.com/tpope/vim-vinegar";
rev = "7b9dff85aec34a0be1a6980b2e686a5d27d70f63";
sha256 = "033w3wsg5ijwmkq5l1d5r7l0mqfy784sbh8mbjcsx13ndl8fc2g8";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "hasksyn-2014-09-03";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/travitch/hasksyn";
2015-06-01 10:14:47 +00:00
rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
sha256 = "09998lnfcshqis5m062wlag6y476imq9jday9gp4ayjjl1cp3cwx";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-haskellconceal = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-07-08 01:24:03 +00:00
name = "vim-haskellconceal-2017-06-15";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/twinside/vim-haskellconceal";
2017-07-08 01:24:03 +00:00
rev = "802f82a5afee56e9e1251e6f756104a3bd114234";
sha256 = "1kh6853hi4rgl4z1xs8kz9l1q9w7lh0r42y2m0rabfpr6yh3091r";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
caw-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "caw-vim-2018-06-16";
src = fetchgit {
url = "https://github.com/tyru/caw.vim";
2018-06-17 19:47:00 +00:00
rev = "e82ae00f3fc03289d4054b44f100025a1bc81939";
sha256 = "16sbrc34nxbrgpj8gyi1drwh52qg3z2nq4frd5f2nfgxsgjrjjjc";
};
dependencies = [];
};
2018-01-25 14:03:24 +00:00
open-browser-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "open-browser-vim-2018-04-26";
2018-01-25 14:03:24 +00:00
src = fetchgit {
url = "https://github.com/tyru/open-browser.vim";
2018-06-17 19:47:00 +00:00
rev = "de4eeb085051e9b56dd5574eba7c7e72feb21246";
sha256 = "1fgp4wwizpknfwscxraqqaxrhvwp9l1mnjwj3llk2x0n9qcqf1db";
2018-01-25 14:03:24 +00:00
};
dependencies = [];
};
neco-look = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neco-look-2018-01-21";
src = fetchgit {
url = "https://github.com/ujihisa/neco-look";
rev = "4ead88e70f359fb9cef6537ed9c336b7673c1b4c";
sha256 = "1lszbif7ymdjch1ypnr1nihs6gfbhb86sj6nz3dwrbgsl454nnrj";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "youcompleteme-2018-06-20";
2015-06-01 10:14:47 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/valloric/youcompleteme";
rev = "e1ead995c13fe20989ee3d69fd76b20c5fff5d5b";
sha256 = "01my9m7a5m24zrh6i867fhqz42jxs0ai2pl4pra8wzvyk4ai1p5f";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
buildPhase = ''
substituteInPlace plugin/youcompleteme.vim \
--replace "'ycm_path_to_python_interpreter', '''" \
"'ycm_path_to_python_interpreter', '${python}/bin/python'"
rm -r third_party/ycmd
ln -s ${ycmd}/lib/ycmd third_party
2015-06-01 10:14:47 +00:00
'';
2015-06-01 10:14:47 +00:00
meta = {
description = "Fastest non utf-8 aware word and C completion engine for Vim";
2018-06-27 20:12:57 +00:00
homepage = https://github.com/Valloric/YouCompleteMe;
2015-06-01 10:14:47 +00:00
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [marcweber jagajaga];
platforms = stdenv.lib.platforms.unix;
2015-06-01 10:14:47 +00:00
};
};
2015-06-01 10:14:47 +00:00
vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-airline-2018-07-13";
src = fetchgit {
url = "https://github.com/vim-airline/vim-airline";
rev = "4cc255a3849c15484f7da5b5039d73f1a567a7e2";
sha256 = "124pl87zwfg4fnb3il5jy5dz03bq5vzyk10z60dvkfw4cr57hlfw";
};
dependencies = [];
};
2016-04-15 22:32:47 +00:00
vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vim-airline-themes-2018-06-14";
2016-04-15 22:32:47 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-airline/vim-airline-themes";
2018-06-17 19:47:00 +00:00
rev = "b35f952a6ae6768ae2c6a9f4febc7945cc311f74";
sha256 = "1j9y9irrzsq1bwp3b22ls016byi0yc9ymigzhw0n180rk6nb36c7";
2016-04-15 22:32:47 +00:00
};
dependencies = [];
};
2015-10-02 08:26:46 +00:00
vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-03-12 10:45:03 +00:00
name = "vim-pandoc-2018-01-11";
2015-10-02 08:26:46 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-pandoc/vim-pandoc";
2018-03-12 10:45:03 +00:00
rev = "3a686781ab5ea622616798475deb394e48d3cc48";
sha256 = "1nvz8v52jydkvnlid5w8dkjmr548ryla2vaxnlgj125aamkvmgn3";
};
dependencies = [];
};
vim-pandoc-after = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-12-07 15:26:37 +00:00
name = "vim-pandoc-after-2017-11-22";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-pandoc/vim-pandoc-after";
2017-12-07 15:26:37 +00:00
rev = "844f27debf4d72811049167f97191a3b551ddfd5";
sha256 = "0i99g9lnk1xzarw3vzbc47i4bg4iybaywkjvd2krln4q426a6saf";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-04-23 05:47:51 +00:00
name = "vim-pandoc-syntax-2017-04-13";
2015-10-02 08:26:46 +00:00
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-pandoc/vim-pandoc-syntax";
2017-04-23 05:47:51 +00:00
rev = "56e8e41ef863a0a7d33d85c3c0c895aa6e9e62d3";
sha256 = "19ll4zrw5yd0frgsbi7pg9b68lmy4bfiwbnwgzii7inifrqsykfw";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
vim-ruby = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-ruby-2018-07-08";
src = fetchgit {
url = "https://github.com/vim-ruby/vim-ruby";
rev = "3e0f241b544c63d44ac925ec557ce6735b24d9cf";
sha256 = "16ywzvb78pxinls0za1bzcds9aznsgvds8q2l4wimp4q9wrs1scs";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
Colour-Sampler-Pack = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Colour-Sampler-Pack-2012-11-29";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-scripts/Colour-Sampler-Pack";
2015-06-01 10:14:47 +00:00
rev = "05cded87b2ef29aaa9e930230bb88e23abff4441";
2016-02-25 09:17:06 +00:00
sha256 = "03v2r18sfgs0xbgy9p56pxfdg0lsk6m7wyr5hw63wm1nzpwiipg3";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
2018-01-25 14:03:57 +00:00
Improved-AnsiEsc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Improved-AnsiEsc-2015-08-25";
src = fetchgit {
url = "https://github.com/vim-scripts/Improved-AnsiEsc";
rev = "e1c59a8e9203fab6b9150721f30548916da73351";
sha256 = "1smjs4kz2kmzprzp9az4957675nakb43146hshbby39j5xz4jsbz";
};
dependencies = [];
};
2016-10-06 16:34:39 +00:00
Rename = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Rename-2011-08-30";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-scripts/Rename";
2016-10-06 16:34:39 +00:00
rev = "b240f28d2ede65fa77cd99fe045efe79202f7a34";
sha256 = "1d1myg4zyc281zcc1ba9idbgcgxndb4a0jwqr4yqxhhzdgszw46r";
};
dependencies = [];
};
2017-03-03 23:15:26 +00:00
ReplaceWithRegister = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ReplaceWithRegister-2014-10-30";
src = fetchgit {
url = "https://github.com/vim-scripts/ReplaceWithRegister";
rev = "832efc23111d19591d495dc72286de2fb0b09345";
sha256 = "0mb0sx85j1k59b1zz95r4vkq4kxlb4krhncq70mq7fxrs5bnhq8g";
};
dependencies = [];
};
YankRing-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "YankRing-vim-2015-07-28";
src = fetchgit {
url = "https://github.com/vim-scripts/YankRing.vim";
rev = "28854abef8fa4ebd3cb219aefcf22566997d8f65";
sha256 = "0zdp8pdsqgrh6lfw8ipjhrig6psvmdxkim9ik801y3r373sk2hxw";
};
dependencies = [];
};
a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "a-vim-2010-11-06";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-scripts/a.vim";
2015-06-01 10:14:47 +00:00
rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885";
2016-02-25 09:17:06 +00:00
sha256 = "0h62v9z5bh9xmaq22pqdb3z79i84a5rknqm68mjpy7nq7s3q42fa";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-15 22:43:54 +00:00
name = "align-2012-08-07";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-scripts/align";
2015-06-01 10:14:47 +00:00
rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77";
2016-02-25 09:17:06 +00:00
sha256 = "0acacr572kfh7jvavbw61q5pkwrpi1albgancma063rpax1pddgp";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
2017-03-03 22:56:32 +00:00
argtextobj-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "argtextobj-vim-2010-10-17";
src = fetchgit {
url = "https://github.com/vim-scripts/argtextobj.vim";
rev = "f3fbe427f7b4ec436416a5816d714dc917dc530b";
sha256 = "1l4jh5hdmky1qj5z26jpnk49a6djjcvzyyr6pknrrgb8rzkiln48";
};
dependencies = [];
};
2018-04-15 14:08:12 +00:00
bats-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "bats-vim-2013-07-03";
src = fetchgit {
url = "https://github.com/vim-scripts/bats.vim";
rev = "3c283f594ff8bc7fb0c25cd07ebef0f17385f94a";
sha256 = "06f3hdf7y5gpwmc6inrhk938qmn7cr6mbk00amrnl1qjvk09givx";
};
dependencies = [];
};
2015-07-09 02:09:13 +00:00
changeColorScheme-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "changeColorScheme-vim-2010-10-17";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-scripts/changeColorScheme.vim";
2015-07-09 02:09:13 +00:00
rev = "b041d49f828629d72f2232531a230d1ec5de2405";
2016-02-25 09:17:06 +00:00
sha256 = "0pybhsg9k9252d4ifdc4gsar8lkmfzbvs6xkzqq1m6f35l9wqk09";
2015-07-09 02:09:13 +00:00
};
dependencies = [];
};
matchit-zip = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "matchit-zip-2010-10-17";
src = fetchgit {
url = "https://github.com/vim-scripts/matchit.zip";
rev = "ced6c409c9beeb0b4142d21906606bd194411d1d";
sha256 = "1s9c4lnsmbfm97bp22jrmcp5lga5ihx23lzqqncvv7rcizkvr3dm";
};
dependencies = [];
};
2018-01-25 11:53:32 +00:00
mayansmoke-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "mayansmoke-git-2010-10-17";
src = fetchgit {
url = "https://github.com/vim-scripts/mayansmoke.git";
rev = "168883af7aec05f139af251f47eadd5dfb802c9d";
sha256 = "1xxcky7i6sx7f1q8xka4gd2xg78w6sqjvqrdwgrdzv93fhf82rpd";
};
dependencies = [];
};
2015-07-29 18:58:17 +00:00
random-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "random-vim-2010-10-17";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-scripts/random.vim";
2015-07-29 18:58:17 +00:00
rev = "b2d85eb24a38074eab37a5acf2a295e1f2ad8989";
2016-02-25 09:17:06 +00:00
sha256 = "1lzy2cq4jcrsqyxlnbnd0y6j4mabm09bi7q22lf6vinqlb84w7sp";
2015-07-29 18:58:17 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
tabmerge = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tabmerge-2010-10-17";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-scripts/tabmerge";
2015-06-01 10:14:47 +00:00
rev = "074e5f06f26e7108a0570071a0f938a821768c06";
2016-02-25 09:17:06 +00:00
sha256 = "0prkyza1n49cdaslcr57w8zv15vw78mlqbzib2xipmawzjq02idq";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
taglist-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "taglist-vim-2010-10-17";
src = fetchgit {
url = "https://github.com/vim-scripts/taglist.vim";
rev = "53041fbc45398a9af631a20657e109707a455339";
sha256 = "07aa2gfc73lznyi7w7cybzanspza3p67cv5hxr21g43zhs5k9izd";
};
dependencies = [];
};
2015-07-29 18:58:17 +00:00
wombat256-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "wombat256-vim-2010-10-17";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/vim-scripts/wombat256.vim";
2015-07-29 18:58:17 +00:00
rev = "8734ba45dcf5e38c4d2686b35c94f9fcb30427e2";
2016-02-25 09:17:06 +00:00
sha256 = "01fdvfwdfqn5xi88lfanb4lb6jmn1ma6wq6d9jj2x7qamdbpvsrg";
2015-07-29 18:58:17 +00:00
};
dependencies = [];
};
vimoutliner = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimoutliner-2018-07-04";
src = fetchgit {
url = "https://github.com/vimoutliner/vimoutliner";
rev = "aad0a213069b8a1b5de91cca07d153fc8352c957";
sha256 = "0pgkgs6xky0skhpp3s9vrw3h48j80im0j39q4vc2b3pd1ydy6rx2";
};
dependencies = [];
};
vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "vimwiki-2018-06-12";
src = fetchgit {
url = "https://github.com/vimwiki/vimwiki";
2018-06-17 19:47:00 +00:00
rev = "9f8b0082dbd99e706cc18de2076f7a66c2ca0a90";
sha256 = "0q9ik2shvg9lcavds2y7ffsj34zl5ichprm2sylz2bfhjcqgsslw";
};
dependencies = [];
};
dhall-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "dhall-vim-2018-07-15";
src = fetchgit {
url = "https://github.com/vmchale/dhall-vim";
rev = "a17c1ebb1487f2a69dd5230e9d4b8a247b50e2ae";
sha256 = "1xrlzvi626bhxh8rs0gz4hjkx7qc0f6bb0vl6ainnkjqafb310qw";
};
dependencies = [];
};
2017-07-23 19:32:15 +00:00
ale = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ale-2018-07-17";
2017-07-23 19:32:15 +00:00
src = fetchgit {
url = "https://github.com/w0rp/ale";
rev = "5453e0e1a43302226da1d1d753e162af0231f9d3";
sha256 = "0zcgfjssvfcc30ksgp42khc9s91gxymkz3dzdhnvwkm0vx90mjlp";
2017-07-23 19:32:15 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-wakatime-2018-07-14";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/wakatime/vim-wakatime";
rev = "25aa400fd1f1e3d689c721605a65e015024dc4cf";
sha256 = "11lk5k8wl3kxp6p2i0nnp56f4wcaniy40kzs3anjdwlzya631rg2";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
buildInputs = [ python ];
};
2015-06-01 10:14:47 +00:00
targets-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "targets-vim-2018-05-27";
src = fetchgit {
url = "https://github.com/wellle/targets.vim";
2018-06-17 19:47:00 +00:00
rev = "c3042dc18acc0dfcee479310d3efc6aefe92db75";
sha256 = "0shnlgwrxzrd0m3k6hnmr66i2l4zknp0pn7f71d2frx937gih34q";
2018-03-12 10:45:03 +00:00
};
dependencies = [];
};
vim-dirdiff = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-dirdiff-2018-01-30";
src = fetchgit {
url = "https://github.com/will133/vim-dirdiff";
rev = "b5a3d59bfbeb5cef7dbadbe69c455b470988b58c";
sha256 = "16hc88k00xa757k0h53r1sbqwxdxdy0118yl2vsigd6rqk474nw1";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2017-12-07 15:26:37 +00:00
name = "command-t-2017-11-16";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/wincent/command-t";
2017-12-07 15:26:37 +00:00
rev = "7147ba92c9c1eef8269fd47d47ba636ce7f365a6";
sha256 = "171z1jjjv1l15rh3i2hc400vjf4zns8sjvda0vcjkx2717ax658r";
2015-03-26 18:16:21 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
buildInputs = [ ruby rake ];
2015-06-01 10:14:47 +00:00
buildPhase = ''
rake make
rm ruby/command-t/ext/command-t/*.o
2015-06-01 10:14:47 +00:00
'';
};
2015-06-01 10:14:47 +00:00
vim-easytags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-easytags-2015-07-01";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/xolox/vim-easytags";
rev = "72a8753b5d0a951e547c51b13633f680a95b5483";
sha256 = "0i8ha1fa5d860b1mi0xp8kwsgb0b9vbzcg1bldzv6s5xd9yyi12i";
};
dependencies = ["vim-misc"];
};
2017-03-03 22:56:32 +00:00
vim-misc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-misc-2015-05-21";
src = fetchgit {
url = "https://github.com/xolox/vim-misc";
rev = "3e6b8fb6f03f13434543ce1f5d24f6a5d3f34f0b";
sha256 = "0rd9788dyfc58py50xbiaz5j7nphyvf3rpp3yal7yq2dhf0awwfi";
};
dependencies = [];
};
vim-latex-live-preview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-latex-live-preview-2017-11-09";
src = fetchgit {
url = "https://github.com/xuhdev/vim-latex-live-preview";
rev = "9855f084d0751dbd40a8cb56518f239e5eb1a624";
sha256 = "0linzdq2zrz5yfpqa51n2i9vrwr0x2r93ckx6n1ngyiw535ddafy";
};
dependencies = [];
};
2017-07-10 17:07:20 +00:00
nim-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2018-06-17 19:47:00 +00:00
name = "nim-vim-2018-05-20";
2017-07-10 17:07:20 +00:00
src = fetchgit {
url = "https://github.com/zah/nim.vim";
2018-06-17 19:47:00 +00:00
rev = "704dd5d63cac54c22fe25c6efbcf18796df412e7";
sha256 = "0azk3m33c47ja24iirlrjqphmd8rzlivinqkx69izmd7l150ds2m";
2017-07-10 17:07:20 +00:00
};
dependencies = [];
};
deoplete-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "deoplete-go-2018-07-03";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/zchee/deoplete-go";
rev = "2d402d856d98d4a351fdcf40d837da0cf52ccdfd";
sha256 = "0hj5bhfhd9am11ixaxad370p982bjig53mbm74fi6slhjpikdrdq";
};
dependencies = [];
buildInputs = [ python3 ];
buildPhase = ''
pushd ./rplugin/python3/deoplete/ujson
python3 setup.py build --build-base=$PWD/build --build-lib=$PWD/build
popd
find ./rplugin/ -name "ujson*.so" -exec mv -v {} ./rplugin/python3/ \;
'';
};
deoplete-jedi = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "deoplete-jedi-2018-07-10";
src = fetchgit {
2017-03-03 22:56:32 +00:00
url = "https://github.com/zchee/deoplete-jedi";
rev = "5540e76ee3194f2eaa2df51945297cb847a1dfa8";
sha256 = "0mqq42v4l2y0hkcs83j0cp7hxamv6gn5g8z4bccrbssgrsv61cg6";
2017-11-06 11:24:35 +00:00
};
dependencies = [];
};
zig-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "zig-vim-2018-07-18";
2017-11-06 11:24:35 +00:00
src = fetchgit {
url = "https://github.com/zig-lang/zig.vim";
rev = "2dc38afd6af04ea563a0d0d6f61891b5c820e8fe";
sha256 = "1nyrg87biwq6b3jk40fyjd5mlnl4pbvwsqi9095y8gjanf9a9dck";
};
dependencies = [];
};
} // lib.optionalAttrs (config.allowAliases or true) (with self; {
# aliasess
airline = vim-airline;
alternative = a-vim; # backwards compat, added 2014-10-21
bats = bats-vim;
calendar = calendar-vim;
coffee-script = vim-coffee-script;
coffeeScript = coffee-script; # backwards compat, added 2014-10-18
Solarized = vim-colors-solarized;
solarized = vim-colors-solarized;
colors-solarized = vim-colors-solarized;
caw = caw-vim;
colorsamplerpack = Colour_Sampler_Pack;
Colour_Sampler_Pack = Colour-Sampler-Pack;
command_T = command-t; # backwards compat, added 2014-10-18
commentary = vim-commentary;
committia = committia-vim-git;
concealedyank = concealedyank-vim;
context-filetype = context_filetype-vim;
Cosco = cosco-vim;
css_color_5056 = vim-css-color;
CSApprox = csapprox;
csv = csv-vim;
ctrlp = ctrlp-vim;
cute-python = vim-cute-python-git;
denite = denite-nvim;
easy-align = vim-easy-align;
easygit = vim-easygit;
easymotion = vim-easymotion;
echodoc = echodoc-vim;
eighties = vim-eighties;
extradite = vim-extradite;
fugitive = vim-fugitive;
ghc-mod-vim = ghcmod-vim;
ghcmod = ghcmod-vim;
goyo = goyo-vim;
Gist = gist-vim;
gitgutter = vim-gitgutter;
gundo = gundo-vim;
Gundo = gundo-vim; # backwards compat, added 2015-10-03
haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
haskellConcealPlus = vim-haskellConcealPlus;
haskellconceal = vim-haskellconceal;
hier = vim-hier;
hlint-refactor = hlint-refactor-vim;
hoogle = vim-hoogle;
Hoogle = vim-hoogle;
ipython = vim-ipython;
latex-live-preview = vim-latex-live-preview;
maktaba = vim-maktaba;
mayansmoke = mayansmoke-git;
multiple-cursors = vim-multiple-cursors;
necoGhc = neco-ghc; # backwards compat, added 2014-10-18
neocomplete = neocomplete-vim;
neoinclude = neoinclude-vim;
neomru = neomru-vim;
neosnippet = neosnippet-vim;
neoyank = neoyank-vim-git;
The_NERD_Commenter = nerdcommenter;
The_NERD_tree = nerdtree;
open-browser = open-browser-vim;
pathogen = vim-pathogen;
peskcolor = peskcolor-vim-git;
polyglot = vim-polyglot;
prettyprint = vim-prettyprint;
quickrun = vim-quickrun;
rainbow_parentheses = rainbow_parentheses-vim;
repeat = vim-repeat;
riv = riv-vim;
rhubarb = vim-rhubarb;
sensible = vim-sensible;
signature = vim-signature;
snipmate = vim-snipmate;
sourcemap = sourcemap-vim;
"sourcemap.vim" = sourcemap-vim;
surround = vim-surround;
sleuth = vim-sleuth;
solidity = vim-solidity;
stylish-haskell = vim-stylish-haskell;
stylishHaskell = stylish-haskell; # backwards compat, added 2014-10-18
Supertab = supertab;
Syntastic = syntastic;
SyntaxRange = vim-SyntaxRange;
table-mode = vim-table-mode;
taglist = taglist-vim;
tabpagebuffer = tabpagebuffer-vim;
tabpagecd = vim-tabpagecd;
Tabular = tabular;
Tagbar = tagbar;
thumbnail = thumbnail-vim;
tlib = tlib_vim;
tmux-navigator = vim-tmux-navigator;
tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
tslime = tslime-vim;
unite = unite-vim;
UltiSnips = ultisnips;
vim-grepper = vim-grepper-git;
vim-test = vim-test-git;
vimproc = vimproc-vim;
vimshell = vimshell-vim;
vinegar = vim-vinegar;
watchdogs = vim-watchdogs;
WebAPI = webapi-vim;
wombat256 = wombat256-vim; # backwards compat, added 2015-7-8
yankring = YankRing-vim;
Yankring = YankRing-vim;
YouCompleteMe = youcompleteme;
xterm-color-table = xterm-color-table-vim;
zeavim = zeavim-vim;
});
in self