diff --git a/dots/.nvim-environments/primary/config/lua/plugins/configs/telescope-nvim.lua b/dots/.nvim-environments/primary/config/lua/plugins/configs/telescope-nvim.lua index 6ab1cfa9..bbeae9ae 100755 --- a/dots/.nvim-environments/primary/config/lua/plugins/configs/telescope-nvim.lua +++ b/dots/.nvim-environments/primary/config/lua/plugins/configs/telescope-nvim.lua @@ -61,7 +61,8 @@ telescope.setup({ path_display = { "truncate" }, winblend = 0, border = {}, - borderchars = { "─", "│", "─", "│", "╭", "╮", "╯", "╰" }, + borderchars = { " ", "", "", "", "", "", "", "" }, + results_title = false, color_devicons = true, use_less = true, set_env = { ["COLORTERM"] = "truecolor" }, diff --git a/dots/.nvim-environments/primary/config/lua/plugins/plugins.lua b/dots/.nvim-environments/primary/config/lua/plugins/plugins.lua index 800f52b2..1d45671c 100755 --- a/dots/.nvim-environments/primary/config/lua/plugins/plugins.lua +++ b/dots/.nvim-environments/primary/config/lua/plugins/plugins.lua @@ -156,10 +156,14 @@ return packer.startup({ CmpCustomSelectionCommit = { fg = colors.fujiWhite, bg = colors.peachRed }, CmpCustomSelectionSpell = { fg = colors.fujiWhite, bg = colors.waveRed }, - TelescopeBorder = { bg = "NONE" }, - TelescopePromptBorder = { bg = "NONE" }, - TelescopeResultsBorder = { bg = "NONE" }, - TelescopePreviewBorder = { bg = "NONE" }, + TelescopeNormal = { bg = colors.sumiInk1 }, + TelescopeBorder = { bg = colors.sumiInk1 }, + TelescopePromptBorder = { bg = colors.sumiInk0 }, + 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" },