mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
Merge pull request #22405 from edanaher/add-vim-plugins
Add vim plugins
This commit is contained in:
commit
91ebefbf73
@ -281,6 +281,17 @@ rec {
|
||||
sourceRoot = ".";
|
||||
};
|
||||
|
||||
vim-highlightedyank = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-highlightedyank-2017-01-04";
|
||||
src = fetchgit {
|
||||
url = "git://github.com/machakann/vim-highlightedyank";
|
||||
rev = "17327fd1072ac15a30f596a2fc0b6cef122e0640";
|
||||
sha256 = "08rc1br8npvkxxh3jn9hmn4yh4nlxy04c8nwyrnpndhw05kca33a";
|
||||
};
|
||||
dependencies = [];
|
||||
|
||||
};
|
||||
|
||||
alchemist-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "alchemist.vim-2017-01-02";
|
||||
src = fetchgit {
|
||||
@ -541,6 +552,17 @@ rec {
|
||||
|
||||
};
|
||||
|
||||
vim-scala = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-scala-2016-08-02";
|
||||
src = fetchgit {
|
||||
url = "git://github.com/derekwyatt/vim-scala";
|
||||
rev = "a6a350f7c632d0e640b57f9dcc7e123409a7bcd7";
|
||||
sha256 = "108c5h02vcb3pnr3si8dhwq3mv2pj5d83mj1ljxdk9595xv8j2rp";
|
||||
};
|
||||
dependencies = [];
|
||||
|
||||
};
|
||||
|
||||
vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-jade-2016-10-31";
|
||||
src = fetchgit {
|
||||
@ -574,6 +596,17 @@ rec {
|
||||
|
||||
};
|
||||
|
||||
neco-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "neco-vim-2017-01-16";
|
||||
src = fetchgit {
|
||||
url = "git://github.com/shougo/neco-vim";
|
||||
rev = "d28e1ea78f90d72636895dbd758de6b35aae2dfa";
|
||||
sha256 = "1qsyicxykl350zz86j7k6k9rflcf5nwrc5jbk9135zs5i8g1lqf3";
|
||||
};
|
||||
dependencies = [];
|
||||
|
||||
};
|
||||
|
||||
editorconfig-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "editorconfig-vim-2016-07-16";
|
||||
src = fetchgit {
|
||||
|
@ -36,6 +36,7 @@
|
||||
"github:ctjhoa/spacevim"
|
||||
"github:ctrlpvim/ctrlp.vim"
|
||||
"github:derekelkins/agda-vim"
|
||||
"github:derekwyatt/vim-scala"
|
||||
"github:digitaltoad/vim-jade"
|
||||
"github:dracula/vim"
|
||||
"github:eagletmt/neco-ghc"
|
||||
@ -75,6 +76,7 @@
|
||||
"github:lokaltog/vim-easymotion"
|
||||
"github:luochen1990/rainbow"
|
||||
"github:lyokha/vim-xkbswitch"
|
||||
"github:machakann/vim-highlightedyank"
|
||||
"github:mhinz/vim-startify"
|
||||
"github:mkasa/lushtags"
|
||||
"github:mpickering/hlint-refactor-vim"
|
||||
@ -90,6 +92,7 @@
|
||||
"github:rust-lang/rust.vim"
|
||||
"github:sbdchd/neoformat"
|
||||
"github:sheerun/vim-polyglot"
|
||||
"github:shougo/neco-vim"
|
||||
"github:shougo/neocomplete.vim"
|
||||
"github:shougo/neosnippet-snippets"
|
||||
"github:shougo/neosnippet.vim"
|
||||
|
@ -29809,6 +29809,23 @@ EOF
|
||||
'';
|
||||
};
|
||||
|
||||
neovim-remote = buildPythonPackage rec {
|
||||
name = "neovim-remote-${version}";
|
||||
version = "v1.4.0";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "mhinz";
|
||||
repo = "neovim-remote";
|
||||
rev = version;
|
||||
sha256 = "0msvfh27f56xj5ki59ikzavxz863nal5scm57n43618m49qzg8iz";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
self.neovim
|
||||
];
|
||||
};
|
||||
|
||||
ghp-import = buildPythonPackage rec {
|
||||
version = "0.4.1";
|
||||
name = "ghp-import-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user