fix(sandwich): add diffview, and lazy install
Signed-off-by: Ryan <ryan@alien.gov>
This commit is contained in:
parent
686a1f43b8
commit
43219b32cb
@ -14,7 +14,11 @@ vim.opt.rtp:prepend(lazypath)
|
||||
local opts = {
|
||||
dev = {
|
||||
path = "~/.local/src"
|
||||
}
|
||||
},
|
||||
install = {
|
||||
-- try to load one of these colorschemes when starting an installation during startup
|
||||
colorscheme = { "gruvbox-material", "habamax" },
|
||||
},
|
||||
}
|
||||
|
||||
local plugins = {
|
||||
@ -125,6 +129,7 @@ local plugins = {
|
||||
-- Code editing
|
||||
{
|
||||
"machakann/vim-sandwich",
|
||||
event = "ModeChanged",
|
||||
keys = "s"
|
||||
},
|
||||
{
|
||||
@ -262,6 +267,10 @@ local plugins = {
|
||||
"seandewar/killersheep.nvim",
|
||||
cmd = "KillKillKill"
|
||||
},
|
||||
{
|
||||
"sindrets/diffview.nvim",
|
||||
event = "CmdlineEnter"
|
||||
},
|
||||
{
|
||||
"NeogitOrg/neogit",
|
||||
dependencies = {
|
||||
@ -282,12 +291,11 @@ local plugins = {
|
||||
local vscode_plugins = {
|
||||
{
|
||||
"machakann/vim-sandwich",
|
||||
event = "ModeChanged",
|
||||
event = "BufEnter",
|
||||
keys = "s"
|
||||
},
|
||||
{
|
||||
"numToStr/Comment.nvim",
|
||||
event = "BufEnter",
|
||||
config = function()
|
||||
require("Comment").setup()
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user