summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lua/plugins/productivity.lua13
1 files changed, 12 insertions, 1 deletions
diff --git a/lua/plugins/productivity.lua b/lua/plugins/productivity.lua
index df60d43..2686b4f 100644
--- a/lua/plugins/productivity.lua
+++ b/lua/plugins/productivity.lua
@@ -13,7 +13,18 @@ return {
"junegunn/fzf",
build = ":call fzf#install()"
},
- { "junegunn/fzf.vim" },
+ {
+ "junegunn/fzf.vim",
+ init = function()
+ vim.g.fzf_vim = {
+ grep_multi_line = 1,
+ preview_window = { 'hidden,right,50%,<70(up,40%)', 'ctrl-/' },
+ buffers_options = '--style full --border-label " Open Buffers "',
+ files_options = '--style full --border-label " Files "',
+ commits_log_options = '--graph --color=always --format="%C(auto)%h%d %s %C(black)%C(bold)%cr"',
+ }
+ end,
+ },
{ "tpope/vim-surround" },
{ "junegunn/vim-easy-align" },
}