mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
vim-plugins: add some more plugins
This commit is contained in:
parent
f14b001e27
commit
5262f5e3a2
@ -501,6 +501,17 @@ rec {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vim-sort-motion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
|
name = "vim-sort-motion-2017-01-28";
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/christoomey/vim-sort-motion";
|
||||||
|
rev = "dab96e1f4100a559c58f1d0d8e5e400057479f6b";
|
||||||
|
sha256 = "0p8p8nn0q62xm6sc36rwn3dknyk0wpjya21iy9y721vbz1s0l8x7";
|
||||||
|
};
|
||||||
|
dependencies = [];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
name = "vim-tmux-navigator-2017-02-26";
|
name = "vim-tmux-navigator-2017-02-26";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
@ -1176,6 +1187,17 @@ rec {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
python-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
|
name = "python-mode-2017-02-06";
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/python-mode/python-mode";
|
||||||
|
rev = "d113cffc3f7a48564aeb568e1c7a6f5312ff09f5";
|
||||||
|
sha256 = "1gn74cj629q00ar3z0c1dlngn31jr4lv04bwi2npzinn7rpf8nj6";
|
||||||
|
};
|
||||||
|
dependencies = [];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
name = "vim-racer-2017-02-08";
|
name = "vim-racer-2017-02-08";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
@ -1404,6 +1426,17 @@ rec {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vim-dispatch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
|
name = "vim-dispatch-2016-08-30";
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/tpope/vim-dispatch";
|
||||||
|
rev = "a54f2c5e18b8c2aad8c6f8ba474760e70fdaaca3";
|
||||||
|
sha256 = "18z1hkr3qrgj9j0kr0q3i5vq27dpkjhsm3mqyssi6k5v0iyw49dk";
|
||||||
|
};
|
||||||
|
dependencies = [];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
name = "vim-eunuch-2016-09-07";
|
name = "vim-eunuch-2016-09-07";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
@ -1551,6 +1584,17 @@ rec {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
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 = [];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
name = "a-vim-2010-11-06";
|
name = "a-vim-2010-11-06";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
"github:bbchung/clighter8"
|
"github:bbchung/clighter8"
|
||||||
"github:benekastah/neomake"
|
"github:benekastah/neomake"
|
||||||
"github:bitc/vim-hdevtools"
|
"github:bitc/vim-hdevtools"
|
||||||
|
"github:christoomey/vim-sort-motion"
|
||||||
"github:christoomey/vim-tmux-navigator"
|
"github:christoomey/vim-tmux-navigator"
|
||||||
"github:ctjhoa/spacevim"
|
"github:ctjhoa/spacevim"
|
||||||
"github:ctrlpvim/ctrlp.vim"
|
"github:ctrlpvim/ctrlp.vim"
|
||||||
@ -89,6 +90,7 @@
|
|||||||
"github:osyo-manga/shabadou.vim"
|
"github:osyo-manga/shabadou.vim"
|
||||||
"github:osyo-manga/vim-watchdogs"
|
"github:osyo-manga/vim-watchdogs"
|
||||||
"github:plasticboy/vim-markdown"
|
"github:plasticboy/vim-markdown"
|
||||||
|
"github:python-mode/python-mode"
|
||||||
"github:racer-rust/vim-racer"
|
"github:racer-rust/vim-racer"
|
||||||
"github:raichoo/purescript-vim"
|
"github:raichoo/purescript-vim"
|
||||||
"github:rhysd/vim-grammarous"
|
"github:rhysd/vim-grammarous"
|
||||||
@ -109,6 +111,7 @@
|
|||||||
"github:tex/vimpreviewpandoc"
|
"github:tex/vimpreviewpandoc"
|
||||||
"github:thinca/vim-quickrun"
|
"github:thinca/vim-quickrun"
|
||||||
"github:tomasr/molokai"
|
"github:tomasr/molokai"
|
||||||
|
"github:tpope/vim-dispatch"
|
||||||
"github:tpope/vim-eunuch"
|
"github:tpope/vim-eunuch"
|
||||||
"github:tpope/vim-repeat"
|
"github:tpope/vim-repeat"
|
||||||
"github:tpope/vim-speeddating"
|
"github:tpope/vim-speeddating"
|
||||||
@ -121,6 +124,7 @@
|
|||||||
"github:vim-pandoc/vim-pandoc-syntax"
|
"github:vim-pandoc/vim-pandoc-syntax"
|
||||||
"github:vim-scripts/Colour-Sampler-Pack"
|
"github:vim-scripts/Colour-Sampler-Pack"
|
||||||
"github:vim-scripts/Rename"
|
"github:vim-scripts/Rename"
|
||||||
|
"github:vim-scripts/ReplaceWithRegister"
|
||||||
"github:vim-scripts/a.vim"
|
"github:vim-scripts/a.vim"
|
||||||
"github:vim-scripts/argtextobj.vim"
|
"github:vim-scripts/argtextobj.vim"
|
||||||
"github:vim-scripts/align"
|
"github:vim-scripts/align"
|
||||||
|
Loading…
Reference in New Issue
Block a user