adding autocomplete

This commit is contained in:
Wilson Soetomo 2025-07-28 15:03:20 -04:00
parent 3338d39206
commit d5b58a58b0
5 changed files with 99 additions and 3 deletions

6
lua/custom/lsp.lua Normal file
View file

@ -0,0 +1,6 @@
local lspconfig = require 'lspconfig'
local servers = { 'pyright', 'lua_ls' }
for _, server in ipairs(servers) do
lspconfig[server].setup {}
end