dots-of-war/files/.config/nvim/fnl/plugins/telescope.fnl

11 lines
270 B
Text
Raw Normal View History

2021-04-18 10:03:50 +00:00
(module plugins.telescope
2021-05-08 17:31:04 +00:00
{require {utils utils
2021-04-18 10:03:50 +00:00
telescope telescope
actions telescope.actions}})
2021-05-09 11:40:11 +00:00
(telescope.setup
{:defaults {:mappings {:i {:<esc> actions.close}}}})
2021-04-18 10:03:50 +00:00
2021-04-23 14:46:45 +00:00
(utils.keymap :n :<C-p> ":Telescope find_files<CR>")