10 lines
222 B
Lua
10 lines
222 B
Lua
local map = core.misc.map
|
|
|
|
return {
|
|
on_attach = function(_, bufnr)
|
|
-- add some basedpyright specific mappings
|
|
local opts = { buffer = bufnr }
|
|
map("n", "cri", "<cmd>PyrightOrganizeImports<CR>", opts)
|
|
end,
|
|
}
|