diff options
Diffstat (limited to '')
-rw-r--r-- | after/plugin/git-yodel.lua | 12 |
1 files changed, 12 insertions, 0 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', + } +} |