feat(nvim): major telescope appearance overhaul

This commit is contained in:
Price Hiller 2022-10-03 21:00:41 -05:00
parent f77fb51e6c
commit 59544079e7
2 changed files with 10 additions and 5 deletions

View File

@ -61,7 +61,8 @@ telescope.setup({
path_display = { "truncate" }, path_display = { "truncate" },
winblend = 0, winblend = 0,
border = {}, border = {},
borderchars = { "", "", "", "", "", "", "", "" }, borderchars = { " ", "", "", "", "", "", "", "" },
results_title = false,
color_devicons = true, color_devicons = true,
use_less = true, use_less = true,
set_env = { ["COLORTERM"] = "truecolor" }, set_env = { ["COLORTERM"] = "truecolor" },

View File

@ -156,10 +156,14 @@ return packer.startup({
CmpCustomSelectionCommit = { fg = colors.fujiWhite, bg = colors.peachRed }, CmpCustomSelectionCommit = { fg = colors.fujiWhite, bg = colors.peachRed },
CmpCustomSelectionSpell = { fg = colors.fujiWhite, bg = colors.waveRed }, CmpCustomSelectionSpell = { fg = colors.fujiWhite, bg = colors.waveRed },
TelescopeBorder = { bg = "NONE" }, TelescopeNormal = { bg = colors.sumiInk1 },
TelescopePromptBorder = { bg = "NONE" }, TelescopeBorder = { bg = colors.sumiInk1 },
TelescopeResultsBorder = { bg = "NONE" }, TelescopePromptBorder = { bg = colors.sumiInk0 },
TelescopePreviewBorder = { bg = "NONE" }, TelescopePromptTitle = { fg = colors.sumiInk0, bg = colors.oniViolet },
TelescopePreviewTitle = { fg = colors.sumiInk0, bg = colors.sakuraPink },
TelescopePreviewBorder = { bg = colors.sumiInk2 },
TelescopePreviewNormal = { bg = colors.sumiInk2 },
TelescopeResultsTitle = { fg = "NONE", bg = "NONE" },
WinSeparator = { fg = colors.sumiInk4, bg = "NONE" }, WinSeparator = { fg = colors.sumiInk4, bg = "NONE" },