nvim/lsp/servers: add json,yaml,vim,lua

These were selected as they seem generally useful in everyday usage of
neovim. Vim/Lua is obvious, Json and Yaml is generally useful for
config editing.
This commit is contained in:
Paul Stemmet 2022-09-03 14:28:30 +00:00
parent af4b4fa24d
commit 635eb80808
Signed by: Paul Stemmet
GPG Key ID: EDEA539F594E7E75
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
local util, Server = require 'psoxizsh.lsp.util', require 'psoxizsh.lsp.preset'
-- List of language servers that are enabled by default
local defaults = {
Server.Json,
Server.Yaml,
Server.Vim,
Server.Lua
}
return util.Servers.new(defaults)