AutoYADM commit: 2024-12-16 18:45:04

This commit is contained in:
Daniel Fichtinger 2024-12-16 18:45:04 -05:00
parent 0865c12bbd
commit 012fef1016
2 changed files with 13 additions and 1 deletions

View file

@ -4,7 +4,7 @@
local opt = vim.opt
opt.scrolloff = 0
vim.g.lazyvim_python_lsp = "pyright"
vim.g.lazyvim_python_lsp = "basedpyright"
vim.g.ai_cmp = false
vim.g.snacks_animate = false
opt.spell = true

View file

@ -0,0 +1,12 @@
return {
"neovim/nvim-lspconfig",
opts = {
servers = {
basedpyright = {
analysis = {
typeCheckingMode = "standard",
},
},
},
},
}