This commit is contained in:
Jonathan DeMasi
2025-09-11 23:25:29 -06:00
commit 4309e63c01
8 changed files with 164 additions and 0 deletions

10
lua/plugins/nvim-lsp.lua Normal file
View File

@@ -0,0 +1,10 @@
return {
{
"https://github.com/neovim/nvim-lspconfig",
config = function()
local lspconfig = require("lspconfig")
lspconfig.gopls.setup({})
end,
}
}