Merge pull request #177897 from SuperSandro2000/coc

vimPackages: add some coc packages
main
Sandro 2 years ago committed by GitHub
commit 7245b3fb67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      pkgs/applications/editors/vim/plugins/overrides.nix
  2. 6
      pkgs/development/node-packages/node-packages.json
  3. 4278
      pkgs/development/node-packages/node-packages.nix

@ -52,9 +52,6 @@
, xorg
, zsh
# test dependencies
, neovim-unwrapped
# command-t dependencies
, rake
, ruby
@ -236,6 +233,12 @@ self: super: {
dependencies = with self; [ nvim-cmp zsh ];
});
coc-nginx = buildVimPluginFrom2Nix {
pname = "coc-nginx";
inherit (nodePackages."@yaegassy/coc-nginx") version meta;
src = "${nodePackages."@yaegassy/coc-nginx"}/lib/node_modules/@yaegassy/coc-nginx";
};
command-t = super.command-t.overrideAttrs (old: {
buildInputs = [ ruby rake ];
buildPhase = ''
@ -1254,6 +1257,7 @@ self: super: {
"coc-cmake"
"coc-css"
"coc-diagnostic"
"coc-docker"
"coc-emmet"
"coc-eslint"
"coc-explorer"
@ -1277,12 +1281,16 @@ self: super: {
"coc-r-lsp"
"coc-rls"
"coc-rust-analyzer"
"coc-sh"
"coc-smartf"
"coc-snippets"
"coc-solargraph"
"coc-stylelint"
"coc-sumneko-lua"
"coc-sqlfluff"
"coc-tabnine"
"coc-texlab"
"coc-toml"
"coc-tslint"
"coc-tslint-plugin"
"coc-tsserver"

@ -52,6 +52,7 @@
, "coc-cmake"
, "coc-css"
, "coc-diagnostic"
, "coc-docker"
, "coc-emmet"
, "coc-eslint"
, "coc-explorer"
@ -75,12 +76,16 @@
, "coc-r-lsp"
, "coc-rls"
, "coc-rust-analyzer"
, "coc-sh"
, "coc-smartf"
, "coc-snippets"
, "coc-solargraph"
, "coc-stylelint"
, "coc-sumneko-lua"
, "coc-sqlfluff"
, "coc-tabnine"
, "coc-texlab"
, "coc-toml"
, "coc-tslint"
, "coc-tslint-plugin"
, "coc-tsserver"
@ -380,6 +385,7 @@
, "webtorrent-cli"
, "wring"
, "write-good"
, "@yaegassy/coc-nginx"
, "yaml-language-server"
, "yalc"
, "yarn"

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save