mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 02:11:33 +00:00
Merge pull request #134 from horriblename/optional-lsp-installation
This commit is contained in:
commit
0a1a12e778
14 changed files with 117 additions and 37 deletions
|
@ -18,3 +18,18 @@ Language specific support means there is a combination of language specific plug
|
|||
|
||||
Adding support for more languages, and improving support for existing ones are great places where you can contribute with a PR.
|
||||
|
||||
=== LSP Custom Packages/Command
|
||||
|
||||
In any of the `opt.languages.<language>.lsp.package` options you can provide your own LSP package, or provide the command to launch the language server, as a list of strings.
|
||||
|
||||
You can use this to skip automatic installation of a language server, and instead use the one found in your `$PATH` during runtime, for example:
|
||||
|
||||
[source,nix]
|
||||
----
|
||||
vim.languages.java = {
|
||||
lsp = {
|
||||
enable = true;
|
||||
package = ["jdt-language-server" "-data" "~/.cache/jdtls/workspace"];
|
||||
};
|
||||
}
|
||||
----
|
||||
|
|
|
@ -14,6 +14,8 @@ https://github.com/horriblename[horriblename]:
|
|||
|
||||
* Streamlined and simplified extra plugin API with the addition of <<opt-vim.extraPlugins>>
|
||||
|
||||
* Allow using command names in place of LSP packages to avoid automatic installation.
|
||||
|
||||
https://github.com/amanse[amanse]:
|
||||
|
||||
* Added daily notes options for obsidian plugin.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue