adding autocomplete
This commit is contained in:
parent
3338d39206
commit
d5b58a58b0
5 changed files with 99 additions and 3 deletions
6
lua/custom/lsp.lua
Normal file
6
lua/custom/lsp.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
local lspconfig = require 'lspconfig'
|
||||
local servers = { 'pyright', 'lua_ls' }
|
||||
|
||||
for _, server in ipairs(servers) do
|
||||
lspconfig[server].setup {}
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue