Compare commits
2 Commits
da7c214afe
...
90fb7736cf
| Author | SHA1 | Date | |
|---|---|---|---|
|
90fb7736cf
|
|||
|
0458cb0825
|
9
nvim/dot-config/nvim/lsp/basedpyright.lua
Normal file
9
nvim/dot-config/nvim/lsp/basedpyright.lua
Normal file
@@ -0,0 +1,9 @@
|
||||
return {
|
||||
settings = {
|
||||
basedpyright = {
|
||||
analysis = {
|
||||
typeCheckingMode = "standard",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -148,5 +148,7 @@ vim.api.nvim_create_autocmd("LspAttach", {
|
||||
end,
|
||||
})
|
||||
|
||||
-- Manually enable rust analyzer
|
||||
vim.lsp.enable("rust_analyzer")
|
||||
-- Manually enable rust analyzer, if installed
|
||||
if vim.fn.executable("rust_analyzer") then
|
||||
vim.lsp.enable("rust_analyzer")
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user