Convert keymappings to which-key

This commit is contained in:
2021-05-21 09:33:15 +02:00
parent 69d9f9896f
commit 0b81a1e8b2
4 changed files with 38 additions and 58 deletions

View File

@@ -0,0 +1,19 @@
-- functions
local M = {}
function M.edit_dotfiles()
require'telescope.builtin'.git_files {
shorten_path = false,
cwd = "~/.dotfiles",
prompt = "~ dotfiles ~",
height = 10,
layout_strategy = 'horizontal',
layout_options = {
preview_width = 0.75,
},
}
end
return M