nvim rework
This commit is contained in:
parent
2420c048b2
commit
a58b47b917
49 changed files with 1359 additions and 802 deletions
.config/nvim/lua/config
26
.config/nvim/lua/config/lsp.lua
Normal file
26
.config/nvim/lua/config/lsp.lua
Normal file
|
@ -0,0 +1,26 @@
|
|||
return {
|
||||
["sumneko_lua"] = {
|
||||
settings = {
|
||||
Lua = {
|
||||
diagnostics = {
|
||||
globals = { "vim" },
|
||||
},
|
||||
workspace = {
|
||||
library = {
|
||||
[vim.fn.expand "$VIMRUNTIME/lua"] = true,
|
||||
[vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true
|
||||
},
|
||||
},
|
||||
telemetry = {
|
||||
enable = false,
|
||||
},
|
||||
maxPreload = 100000,
|
||||
preloadFileSize = 10000,
|
||||
},
|
||||
},
|
||||
},
|
||||
["bashls"] = {
|
||||
},
|
||||
["clangd"] = {
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue