01012023
This commit is contained in:
parent
a202509bbb
commit
e50a63bb71
6 changed files with 27 additions and 3 deletions
6
linux/.config/nvim/lua/plugins/hardtime-nvim.lua
Normal file
6
linux/.config/nvim/lua/plugins/hardtime-nvim.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
"m4xshen/hardtime.nvim",
|
||||
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
|
||||
opts = {},
|
||||
lazy = false
|
||||
}
|
|
@ -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,
|
||||
}
|
||||
})
|
||||
|
|
7
linux/.config/nvim/lua/plugins/neoscroll.lua
Normal file
7
linux/.config/nvim/lua/plugins/neoscroll.lua
Normal file
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
"karb94/neoscroll.nvim",
|
||||
config = function ()
|
||||
require('neoscroll').setup {}
|
||||
end,
|
||||
lazy = false,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue