1
0
Fork 0

nvim rework

This commit is contained in:
Luca Bilke 2022-10-21 17:53:51 +02:00
commit a58b47b917
49 changed files with 1359 additions and 802 deletions
.config/nvim/lua/config

View 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"] = {
},
}