Updated config

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2024-01-19 21:34:15 +01:00
parent 76ad2385e9
commit 8daffdbbdf
4 changed files with 10 additions and 10 deletions

View File

@@ -11,7 +11,7 @@ return {
local telescope = require("telescope")
local command = { "fd", "-I", "-H", "--type", "file" }
local ignored = { "node_modules", ".git" }
local ignored = { "node_modules", ".git", "dist" }
for i, v in ipairs(ignored) do
table.insert(command, "--exclude")
@@ -40,10 +40,10 @@ return {
},
},
fzf = {
fuzzy = true, -- false will only do exact matching
fuzzy = true, -- false will only do exact matching
override_generic_sorter = true, -- override the generic sorter
override_file_sorter = true, -- override the file sorter
case_mode = "smart_case", -- or "ignore_case" or "respect_case"
override_file_sorter = true, -- override the file sorter
case_mode = "smart_case", -- or "ignore_case" or "respect_case"
},
},
})