Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/nvim/lua/user/lsp/nlsp.lua

11 lines
283 B
Lua
Raw Normal View History

2022-01-21 08:22:02 +00:00
local nlsp_status_ok, nlspsettings = pcall(require, "nlspsettings")
if not nlsp_status_ok then
return
end
nlspsettings.setup({
config_home = vim.fn.stdpath("config") .. "/lua/user/lsp/settings",
local_settings_root_markers = { ".git" },
jsonls_append_default_schemas = true,
})