nvim diffview plugin

master
spike 2 years ago
parent bf50d7e8c6
commit a388697e9b

@ -326,7 +326,10 @@ M.general = { --{{{
["%c"] = { "~/.config/nvim/", "shortcut to nvim config dir"},
-- ["tsf"] = { "set foldmethod=expr | set foldexpr=nvim_treesitter#foldexpr()",
-- "enable Treesitter folding"}
}--}}}
},--}}}
-- visual mode
-- x = { },
} --}}}
M.tabufline = { --{{{

@ -3,7 +3,8 @@
local M = {}
local colors = {
neon = "#3ece8d"
neon = "#3ece8d",
flashred = "#ff4848",
}
-- make sure you maintain the structure of `core/default_config.lua` here,
@ -108,7 +109,7 @@ M.ui = {
fg = "purple"
},
LuaSnipChoice = {
fg = "#ff4848",
fg = "sun",
bg = "one_bg3",
},

@ -12,7 +12,7 @@ local options = {
ext_opts = {
[types.choiceNode] = {
passive = {
virt_text = { { " ", "LuaSnipChoice" } },
virt_text = { { " ", "LuaSnipChoice" } },
}
}
},

@ -299,6 +299,11 @@ return {
cmd = { "G", "Git", "G*" }
},
["sindrets/diffview.nvim"] = {
requires = {"nvim-lua/plenary.nvim"},
after = {"plenary.nvim"},
},
-- session and view
["vim-scripts/restore_view.vim"] = {}, -- TODO: check if still needed

Loading…
Cancel
Save