diff options
-rw-r--r-- | after/plugin/git-yodel.lua | 12 | ||||
-rw-r--r-- | lua/core/plugins.lua | 5 |
2 files changed, 15 insertions, 2 deletions
diff --git a/after/plugin/git-yodel.lua b/after/plugin/git-yodel.lua new file mode 100644 index 0000000..434ce4f --- /dev/null +++ b/after/plugin/git-yodel.lua @@ -0,0 +1,12 @@ +local status_ok, yodel = pcall(require, "git-yodel") +if not status_ok then + return +end + +yodel.setup { + diffpreview = { + border = 'shadow', + width = 'auto', + height = 'auto', + } +} diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua index ac4a109..d5f6379 100644 --- a/lua/core/plugins.lua +++ b/lua/core/plugins.lua @@ -5,8 +5,9 @@ require 'dep' { -- branch = 'dev' }, - -- preformance -------------------------------------------------------------- - { 'lewis6991/impatient.nvim' }, + { 'squibid/git-yodel', + url = 'https://git.squi.bid/git-yodel' + }, -- GAMES -------------------------------------------------------------------- { 'seandewar/killersheep.nvim' }, |