diff --git a/lua/plugins/fzf-lua.lua b/lua/plugins/fzf-lua.lua index 8c3dcf9..427e99d 100644 --- a/lua/plugins/fzf-lua.lua +++ b/lua/plugins/fzf-lua.lua @@ -7,10 +7,20 @@ return { 'borderless_full', actions = { files = { + ['default'] = actions.file_edit_or_qf, + ['ctrl-s'] = actions.file_split, + ['ctrl-v'] = actions.file_vsplit, + ['ctrl-t'] = actions.file_tabedit, + ['alt-q'] = actions.file_sel_to_qf, + ['alt-l'] = actions.file_sel_to_ll, ['ctrl-x'] = actions.file_split, }, buffers = { - ['ctrl-x'] = actions.buf_split, + ['default'] = actions.buf_edit, + ['ctrl-s'] = actions.buf_split, + ['ctrl-v'] = actions.buf_vsplit, + ['ctrl-t'] = actions.buf_tabedit, + ['ctrl-x'] = actions.buf_split } } })