diff options
| author | jdhao <jdhao@hotmail.com> | 2023-10-18 22:07:14 +0200 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2023-10-18 22:10:11 +0200 |
| commit | 2c9948300d3bce4c825ca0fbc217d8e5f671e1b7 (patch) | |
| tree | 46eb6cc3b23c03eeb49107be5eb746af0b566a65 | |
| parent | dfaa3d97a58ffabaab65abf2ad303a594d53f17d (diff) | |
Add diffview.nvim for viewing diffs
| -rw-r--r-- | lua/plugin_specs.lua | 5 | ||||
| -rw-r--r-- | viml_conf/options.vim | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lua/plugin_specs.lua b/lua/plugin_specs.lua index ab80948..8f9c4be 100644 --- a/lua/plugin_specs.lua +++ b/lua/plugin_specs.lua @@ -309,6 +309,11 @@ local plugin_specs = { -- Better git commit experience { "rhysd/committia.vim", lazy = true }, + + { + "sindrets/diffview.nvim" + }, + { "kevinhwang91/nvim-bqf", ft = "qf", diff --git a/viml_conf/options.vim b/viml_conf/options.vim index 5326636..98fb3a6 100644 --- a/viml_conf/options.vim +++ b/viml_conf/options.vim @@ -1,7 +1,7 @@ scriptencoding utf-8 " change fillchars for folding, vertical split, end of buffer, and message separator -set fillchars=fold:\ ,vert:\│,eob:\ ,msgsep:‾ +set fillchars=fold:\ ,vert:\│,eob:\ ,msgsep:‾,diff:╱ " Split window below/right when creating horizontal/vertical windows set splitbelow splitright |
