pkgs: vim: add vim-lsp
This commit is contained in:
parent
4d4ba3ca29
commit
ef7352407c
1 changed files with 29 additions and 0 deletions
|
@ -148,3 +148,32 @@ applications or interpreters.")
|
||||||
provides an asynchronous keyword completion system in the current
|
provides an asynchronous keyword completion system in the current
|
||||||
buffer.")
|
buffer.")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public vim-lsp
|
||||||
|
(let ((commit "309e9e5c8103bee69eabd152c09eaeec2e0a11f9")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "vim-lsp")
|
||||||
|
(version (git-version "0.1.4" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/prabirshrestha/vim-lsp")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"10hwqd07qipn146iwdih3l7f8nbzz01jh7wpbl9f8l84vi5g5c45"))))
|
||||||
|
(build-system copy-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:install-plan '(("autoload" "share/vim/vimfiles/")
|
||||||
|
("doc" "share/vim/vimfiles/")
|
||||||
|
("ftplugin" "share/vim/vimfiles/")
|
||||||
|
("plugin" "share/vim/vimfiles/")
|
||||||
|
("syntax" "share/vim/vimfiles/"))))
|
||||||
|
(home-page "https://github.com/prabirshrestha/vim-lsp")
|
||||||
|
(synopsis "Async language server protocol plugin for vim and neovim")
|
||||||
|
(description "Async language server protocol plugin for vim and neovim")
|
||||||
|
;; vim-lsp itself is licensed under expat however it borrows code from other
|
||||||
|
;; third party projects that are not strictly expat. Setting license to #f for now.
|
||||||
|
(license #f))))
|
||||||
|
|
Loading…
Reference in a new issue