mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-27 12:55:38 +00:00
20 lines
344 B
Lua
20 lines
344 B
Lua
-- 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
|