Added lsp, blink, etc...

This commit is contained in:
maciejrusek
2026-03-10 23:01:51 +01:00
parent e98b1b4f8e
commit 0f03121b87
9 changed files with 93 additions and 2 deletions

View File

@@ -1,7 +1,18 @@
return {
"neovim/nvim-lspconfig",
dependencies = { 'saghen/blink.cmp' },
config = function()
vim.lsp.config('lua_ls', {
cmd = {"lua-language-server"},
filetypes = {"lua"},
})
vim.lsp.enable('lua_ls')
vim.lsp.enable('basedpyright')
end,
}