mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat: add Dotbot
This commit is contained in:
21
config/nvim/lua/plugins/telescope-fzy-native.lua
Normal file
21
config/nvim/lua/plugins/telescope-fzy-native.lua
Normal file
@@ -0,0 +1,21 @@
|
||||
-- Telescope extension for a FZY style sorter that is compiled
|
||||
-- https://github.com/nvim-telescope/telescope-fzy-native.nvim
|
||||
return {
|
||||
"telescope.nvim",
|
||||
dependencies = {
|
||||
"nvim-telescope/telescope-fzy-native.nvim",
|
||||
opts = {
|
||||
extensions = {
|
||||
fzy_native = {
|
||||
fuzzy = true,
|
||||
override_generic_sorter = true,
|
||||
override_file_sorter = true,
|
||||
case_mode = "smart_case",
|
||||
},
|
||||
},
|
||||
},
|
||||
config = function()
|
||||
require("telescope").load_extension("fzy_native")
|
||||
end,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user