home: vim: telescope: set-up 'fzf' matching
This commit is contained in:
parent
8b4da72c84
commit
9364fe546d
2 changed files with 17 additions and 0 deletions
16
home/vim/plugin/settings/telescope.vim
Normal file
16
home/vim/plugin/settings/telescope.vim
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
lua << EOF
|
||||
local telescope = require("telescope")
|
||||
|
||||
telescope.setup({
|
||||
extensions = {
|
||||
fzf = {
|
||||
fuzzy = true,
|
||||
override_generic_sorter = true,
|
||||
override_file_sorter = true,
|
||||
case_mode = "smart_case",
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
telescope.load_extension("fzf")
|
||||
EOF
|
||||
Loading…
Add table
Add a link
Reference in a new issue