This commit is contained in:
foozzi 2024-01-01 23:39:05 -05:00
parent a202509bbb
commit e50a63bb71
6 changed files with 27 additions and 3 deletions

View file

@ -0,0 +1,6 @@
return {
"m4xshen/hardtime.nvim",
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
opts = {},
lazy = false
}

View file

@ -67,7 +67,15 @@ local config = function()
require('lspconfig').lua_ls.setup(lua_opts)
end,
pyright = function()
require('lspconfig').pyright.setup({})
require('lspconfig').pyright.setup({
settings = {
python = {
analysis = {
typeCheckingMode = "off"
}
}
}
})
end,
}
})

View file

@ -0,0 +1,7 @@
return {
"karb94/neoscroll.nvim",
config = function ()
require('neoscroll').setup {}
end,
lazy = false,
}