Initial telescope config
TODO: add keybinds and more extensions
This commit is contained in:
parent
26d5e3b1ce
commit
c711b119c1
19
after/plugin/telescope.lua
Normal file
19
after/plugin/telescope.lua
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
local ok, telescope = pcall(require,"telescope")
|
||||||
|
if not ok then
|
||||||
|
print("no telescope")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
telescope.setup {
|
||||||
|
|
||||||
|
extensions = {
|
||||||
|
fzf = {
|
||||||
|
fuzzy = true,
|
||||||
|
override_generic_sorter = true,
|
||||||
|
override_file_sorter = true,
|
||||||
|
case_mode = "smart_case",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
telescope.load_extension('fzf')
|
||||||
Loading…
Reference in New Issue
Block a user