add vim-matchup , lazy load some plugins

This commit is contained in:
siduck76
2021-06-26 07:54:10 +05:30
parent 193a852335
commit 2f238742d2
3 changed files with 18 additions and 4 deletions

View File

@@ -71,6 +71,11 @@ return packer.startup(
end
}
use {
"andymass/vim-matchup",
event = "CursorMoved"
}
use {
"terrortylor/nvim-comment",
cmd = "CommentToggle",
@@ -113,7 +118,7 @@ return packer.startup(
end
}
use "tweekmonster/startuptime.vim"
use {"tweekmonster/startuptime.vim", cmd = "StartupTime"}
-- load autosave plugin only if its globally enabled
use {
@@ -123,7 +128,14 @@ return packer.startup(
end
}
use "karb94/neoscroll.nvim"
-- smooth scroll
use {
"karb94/neoscroll.nvim",
event = "WinScrolled",
config = function()
require("neoscroll").setup()
end
}
use {
"kdav5758/TrueZen.nvim",