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

13 lines
298 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-08 17:31:04 +00:00
(telescope.setup
2021-04-18 10:03:50 +00:00
{:defaults
2021-05-08 17:31:04 +00:00
{:i { "<esc>" actions.close}}})
2021-04-18 10:03:50 +00:00
2021-04-22 17:54:37 +00:00
(telescope.load_extension "media_files")
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>")