migrate to stow
This commit is contained in:
20
neovim/.config/nvim/lua/user/telescope.lua
Normal file
20
neovim/.config/nvim/lua/user/telescope.lua
Normal file
@@ -0,0 +1,20 @@
|
||||
local telescope = require("telescope")
|
||||
|
||||
telescope.setup({
|
||||
defaults = {
|
||||
sorting_strategy = "ascending",
|
||||
file_ignore_patterns = { ".git/", "node_modules/" },
|
||||
},
|
||||
extensions = {
|
||||
fzf = {
|
||||
fuzzy = true,
|
||||
override_generic_sorter = true,
|
||||
override_file_sorter = true,
|
||||
case_mode = "smart_case",
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
if vim.fn.has("win32") == 0 then
|
||||
require("telescope").load_extension("fzf")
|
||||
end
|
||||
Reference in New Issue
Block a user