Better modules

This commit is contained in:
juanmagalhaes 2023-08-16 00:12:13 -03:00
parent 5721e692da
commit 39dfc1554a
21 changed files with 368 additions and 373 deletions

View file

@ -0,0 +1,18 @@
-- [[ Configure Telescope ]]
-- See `:help telescope` and `:help telescope.setup()`
require('telescope').setup {
defaults = {
mappings = {
i = {
['<C-u>'] = false,
['<C-d>'] = false,
},
},
},
}
-- Enable telescope fzf native, if installed
pcall(require('telescope').load_extension, 'fzf')
-- See `:help telescope.builtin`