Better modules
This commit is contained in:
parent
5721e692da
commit
39dfc1554a
21 changed files with 368 additions and 373 deletions
18
lua/core/setup/file-search.lua
Normal file
18
lua/core/setup/file-search.lua
Normal 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`
|
||||
Loading…
Add table
Add a link
Reference in a new issue