10 lines
195 B
Plaintext
10 lines
195 B
Plaintext
local lspconfig = require('lspconfig')
|
|
|
|
-- Basic Pyright setup
|
|
lspconfig.pyright.setup({
|
|
on_attach = function(client, bufnr)
|
|
-- Optional: Add keybindings or other configurations
|
|
end,
|
|
})
|
|
|