This commit is contained in:
2026-03-10 23:47:39 +01:00
parent b50ad6baa8
commit 30c84977cb
5 changed files with 26 additions and 6 deletions

14
lua/config/lsp.lua Normal file
View File

@@ -0,0 +1,14 @@
-- Load Neovim's LSP configuration module
local lspconfig = require("vim.lsp.lspconfig")
-- Configure the Lua language server
lspconfig.lua_ls.setup({
settings = {
Lua = {
diagnostics = {
globals = { "vim" }, -- avoid warnings for Neovim globals
},
},
},
})