LunarVim.LunarVim/ftplugin/yaml.lua

7 lines
250 B
Lua
Raw Normal View History

-- npm install -g yaml-language-server
require'lspconfig'.yamlls.setup{
2021-03-25 19:58:40 -04:00
cmd = {DATA_PATH .. "/lspinstall/yaml/node_modules/.bin/yaml-language-server", "--stdio"},
on_attach = require'lsp'.common_on_attach,
}
2021-07-01 23:42:26 -04:00
vim.cmd("setl ts=2 sw=2 ts=2 ai et")