12 lines
211 B
VimL
12 lines
211 B
VimL
|
lua << EOF
|
||
|
local lsp = require("lspconfig")
|
||
|
local utils = require("ambroisie.utils")
|
||
|
|
||
|
-- Python
|
||
|
if utils.is_executable("pyright") then
|
||
|
lsp.pyright.setup({
|
||
|
on_attach = utils.on_attach,
|
||
|
})
|
||
|
end
|
||
|
EOF
|