fix: typo telscope

This commit is contained in:
asep.komarudin 2024-06-07 23:12:05 +07:00
parent 090f4c3d24
commit 27405a0f8a
2 changed files with 8 additions and 6 deletions

View file

@ -10,15 +10,15 @@ return {
local live_grep = {
only_sort_text = true,
}
if vim.g.pcode_telscope_theme_find_file and vim.g.pcode_telscope_theme_find_file ~= "center" then
if vim.g.pcode_telescope_theme_find_file and vim.g.pcode_telescope_theme_find_file ~= "center" then
find_files = {
theme = vim.g.pcode_telscope_theme_find_file,
theme = vim.g.pcode_telescope_theme_find_file,
hidden = true,
}
end
if vim.g.pcode_telscope_theme_live_grep and vim.g.pcode_telscope_theme_live_grep ~= "center" then
if vim.g.pcode_telescope_theme_live_grep and vim.g.pcode_telescope_theme_live_grep ~= "center" then
live_grep = {
theme = vim.g.pcode_telscope_theme_live_grep,
theme = vim.g.pcode_telescope_theme_live_grep,
only_sort_text = true,
}
end