Merge pull request #8911 from rehno-lindeque/vimPlugins-vim-multiple-cursors
vimPlugins: add vim-multiple-cursors
This commit is contained in:
commit
4bffdc51e7
|
@ -59,6 +59,7 @@ rec {
|
||||||
hoogle = Hoogle;
|
hoogle = Hoogle;
|
||||||
ipython = vim-ipython;
|
ipython = vim-ipython;
|
||||||
latex-live-preview = vim-latex-live-preview;
|
latex-live-preview = vim-latex-live-preview;
|
||||||
|
multiple-cursors = vim-multiple-cursors;
|
||||||
necoGhc = neco-ghc; # backwards compat, added 2014-10-18
|
necoGhc = neco-ghc; # backwards compat, added 2014-10-18
|
||||||
neocomplete = neocomplete-vim;
|
neocomplete = neocomplete-vim;
|
||||||
neosnippet = neosnippet-vim;
|
neosnippet = neosnippet-vim;
|
||||||
|
@ -451,6 +452,17 @@ rec {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
|
name = "vim-multiple-cursors-2015-05-29";
|
||||||
|
src = fetchgit {
|
||||||
|
url = "git://github.com/terryma/vim-multiple-cursors";
|
||||||
|
rev = "3199d34f57e1e20d2dd807b31a5a72d7f7d42e96";
|
||||||
|
sha256 = "26b43c921b416cc19482d03435516d42a209ab104bac9979b073d0db61e95186";
|
||||||
|
};
|
||||||
|
dependencies = [];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
name = "vim-nerdtree-tabs-2014-09-25";
|
name = "vim-nerdtree-tabs-2014-09-25";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
|
|
|
@ -96,6 +96,7 @@
|
||||||
"vim-gitgutter"
|
"vim-gitgutter"
|
||||||
"vim-iced-coffee-script"
|
"vim-iced-coffee-script"
|
||||||
"vim-latex-live-preview"
|
"vim-latex-live-preview"
|
||||||
|
"vim-multiple-cursors"
|
||||||
"vim-signature"
|
"vim-signature"
|
||||||
"vim-snippets"
|
"vim-snippets"
|
||||||
"vim2hs"
|
"vim2hs"
|
||||||
|
|
Loading…
Reference in New Issue