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

11 lines
233 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 09:36:32 +00:00
(print "initializing telescope")
2021-05-08 20:24:53 +00:00
(telescope.setup {})
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>")