Compare commits

..

No commits in common. "c2ec317b1bbcac75b7c258759b62c65261ab5d5d" and "e121bde8d8eec6611748a038a5216014c9b9a03c" have entirely different histories.

2 changed files with 9 additions and 1 deletions

View File

@ -40,7 +40,7 @@ M.gen_chadrc_template = function()
local path = fn.stdpath "config" .. "/lua/custom"
if fn.isdirectory(path) ~= 1 then
local input = vim.env.NVCHAD_EXAMPLE_CONFIG or fn.input "Do you want to install example custom config? (y/N): "
local input = fn.input "Do you want to install example custom config? (y/N): "
if input:lower() == "y" then
M.echo "Cloning example custom config repo..."

View File

@ -50,6 +50,14 @@ local options = {
},
extensions_list = { "themes", "terms" },
extensions = {
fzf = {
fuzzy = true,
override_generic_sorter = true,
override_file_sorter = true,
case_mode = "smart_case",
},
},
}
return options