move stuff to common and half figured out the install script
This commit is contained in:
18
common/.config/nvim/lua/lsp-server-config/lua.lua
Normal file
18
common/.config/nvim/lua/lsp-server-config/lua.lua
Normal file
@@ -0,0 +1,18 @@
|
||||
local opts = {
|
||||
settings = {
|
||||
Lua = {
|
||||
diagnostics = {
|
||||
globals = { "vim" },
|
||||
},
|
||||
workspace = {
|
||||
library = {
|
||||
[vim.fn.expand "$VIMRUNTIME/lua"] = true,
|
||||
[vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true,
|
||||
},
|
||||
maxPreload = 100000,
|
||||
preloadFileSize = 10000,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
return opts
|
||||
Reference in New Issue
Block a user