dotfiles/.config/nvim/lua/lsp/servers/pyright.lua

9 lines
221 B
Lua
Raw Normal View History

2022-12-24 12:33:46 -05:00
return {
cmd = {vim.g.lsp_path .. "pyright-langserver", "--stdio"},
filetypes = {"python"},
2022-12-24 12:33:46 -05:00
on_attach = vim.g.lsp_on_attach,
handlers = vim.g.lsp_handlers,
capabilities = vim.g.lsp_capabilities,
2022-12-24 12:33:46 -05:00
}