Merge pull request #18688 from phunehehe/more-vim-plugins
vimPlugins: added acp, rainbow and vim-repeat
This commit is contained in:
commit
301ef1e715
2 changed files with 42 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
# TODO check that no license information gets lost
|
||||
{ fetchurl, bash, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
|
||||
, which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip
|
||||
, vim_configurable, vimPlugins, xkb_switch, git, rustracerd, fzf
|
||||
{ fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
|
||||
, which, fetchgit, llvmPackages
|
||||
, xkb_switch, rustracerd, fzf
|
||||
, Cocoa ? null
|
||||
}:
|
||||
|
||||
|
@ -80,7 +80,9 @@ rec {
|
|||
neosnippet = neosnippet-vim;
|
||||
nerdcommenter = The_NERD_Commenter;
|
||||
nerdtree = The_NERD_tree;
|
||||
polyglot = vim-polyglot;
|
||||
quickrun = vim-quickrun;
|
||||
repeat = vim-repeat;
|
||||
signature = vim-signature;
|
||||
stylish-haskell = vim-stylish-haskell;
|
||||
stylishHaskell = stylish-haskell; # backwards compat, added 2014-10-18
|
||||
|
@ -92,6 +94,7 @@ rec {
|
|||
tmux-navigator = vim-tmux-navigator;
|
||||
tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
|
||||
tslime = tslime-vim;
|
||||
unite = unite-vim;
|
||||
vimproc = vimproc-vim;
|
||||
vimshell = vimshell-vim;
|
||||
watchdogs = vim-watchdogs;
|
||||
|
@ -497,6 +500,17 @@ rec {
|
|||
|
||||
};
|
||||
|
||||
acp = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "acp-2013-02-05";
|
||||
src = fetchgit {
|
||||
url = "git://github.com/eikenb/acp";
|
||||
rev = "5c627cec37d0d3b1670cb250d84e176e8b0c644e";
|
||||
sha256 = "0h7s4nvxin7m2caka7g1hhlxj1bbiwsvw8s2lqwlh7nq43v23ghg";
|
||||
};
|
||||
dependencies = [];
|
||||
|
||||
};
|
||||
|
||||
elm-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "elm-vim-2016-07-25";
|
||||
src = fetchgit {
|
||||
|
@ -838,6 +852,17 @@ rec {
|
|||
|
||||
};
|
||||
|
||||
rainbow = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "rainbow-2016-08-08";
|
||||
src = fetchgit {
|
||||
url = "git://github.com/luochen1990/rainbow";
|
||||
rev = "eeb35ccece20f2648b44580c484c6e57eec3c92b";
|
||||
sha256 = "0s1ygjm5czzj1idrw4f13gg60zljznb6bs7fps4i3wl2mbmw5641";
|
||||
};
|
||||
dependencies = [];
|
||||
|
||||
};
|
||||
|
||||
vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-xkbswitch-2016-01-31";
|
||||
src = fetchgit {
|
||||
|
@ -1146,6 +1171,17 @@ rec {
|
|||
|
||||
};
|
||||
|
||||
vim-repeat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-repeat-2015-05-09";
|
||||
src = fetchgit {
|
||||
url = "git://github.com/tpope/vim-repeat";
|
||||
rev = "7a6675f092842c8f81e71d5345bd7cdbf3759415";
|
||||
sha256 = "0p8g5y3vyl1765lj1r8jpc06l465f9bagivq6k8ndajbg049brl7";
|
||||
};
|
||||
dependencies = [];
|
||||
|
||||
};
|
||||
|
||||
hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "hasksyn-2014-09-03";
|
||||
src = fetchgit {
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
"github:ctrlpvim/ctrlp.vim"
|
||||
"github:digitaltoad/vim-jade"
|
||||
"github:eagletmt/neco-ghc"
|
||||
"github:eikenb/acp"
|
||||
"github:elmcast/elm-vim"
|
||||
"github:embear/vim-localvimrc"
|
||||
"github:enomsg/vim-haskellConcealPlus"
|
||||
|
@ -64,6 +65,7 @@
|
|||
"github:lepture/vim-jinja"
|
||||
"github:lervag/vimtex"
|
||||
"github:lokaltog/vim-easymotion"
|
||||
"github:luochen1990/rainbow"
|
||||
"github:lyokha/vim-xkbswitch"
|
||||
"github:mhinz/vim-startify"
|
||||
"github:mkasa/lushtags"
|
||||
|
@ -91,6 +93,7 @@
|
|||
"github:thinca/vim-quickrun"
|
||||
"github:tomasr/molokai"
|
||||
"github:tpope/vim-eunuch"
|
||||
"github:tpope/vim-repeat"
|
||||
"github:travitch/hasksyn"
|
||||
"github:twinside/vim-haskellconceal"
|
||||
"github:valloric/youcompleteme"
|
||||
|
|
Loading…
Reference in a new issue