diff options
| author | pml68 <tutorialmester@gmail.com> | 2024-03-18 21:33:54 +0100 |
|---|---|---|
| committer | pml68 <tutorialmester@gmail.com> | 2024-03-18 21:33:54 +0100 |
| commit | 30073d82a57a4839f9687c9dbcde627c112b1839 (patch) | |
| tree | efe4ff05512462fc94edeea7c1f5996149cfa96c /lua/pml68/configs/settings/lua_ls.lua | |
| parent | feat: missed the Float part (diff) | |
| download | nvim-30073d82a57a4839f9687c9dbcde627c112b1839.tar.gz | |
feat: autocompletion, keymaps and more
Diffstat (limited to 'lua/pml68/configs/settings/lua_ls.lua')
| -rw-r--r-- | lua/pml68/configs/settings/lua_ls.lua | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lua/pml68/configs/settings/lua_ls.lua b/lua/pml68/configs/settings/lua_ls.lua index 7db368c..de4124c 100644 --- a/lua/pml68/configs/settings/lua_ls.lua +++ b/lua/pml68/configs/settings/lua_ls.lua @@ -2,18 +2,18 @@ return { settings = { Lua = { diagnostics = { - globals = { "vim " }, - }, - workspace = { - library = { - [vim.fn.expand "$VIMRUNTIME/lua"] = true, - [vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true, - [vim.fn.stdpath "data" .. "/lazy/ui/nvchad_types"] = true, - [vim.fn.stdpath "data" .. "/lazy/lazy.nvim/lua/lazy"] = true, - }, - maxPreload = 100000, - preloadFileSize = 10000, - } + globals = { "vim " }, + }, + workspace = { + library = { + [vim.fn.expand "$VIMRUNTIME/lua"] = true, + [vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true, + [vim.fn.stdpath "data" .. "/lazy/ui/nvchad_types"] = true, + [vim.fn.stdpath "data" .. "/lazy/lazy.nvim/lua/lazy"] = true, + }, + maxPreload = 100000, + preloadFileSize = 10000, + } } } } |
