Skip to content

Commit

Permalink
fix(colorscheme): make telescope windows transparent in Tokyonight
Browse files Browse the repository at this point in the history
  • Loading branch information
ecosse3 committed Jan 31, 2022
1 parent 0e8b2e9 commit 47843b0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lua/colorscheme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ if EcoVim.colorscheme == 'tokyonight' then
vim.highlight.link('LineNr', 'Comment', true)
vim.highlight.create('BufferTabpageFill', { guifg = "None" }, false);
vim.highlight.create('VertSplit', { guibg = "#16161e", guifg = "#16161e" }, false);
vim.highlight.create('TelescopeNormal', { guibg = "None", guifg = "None" }, false);
vim.highlight.create('TelescopeBorder', { guibg = "None", guifg = "None" }, false);
vim.highlight.link('TelescopeMatching', 'Constant', true)
end

if EcoVim.colorscheme == 'nightfly' then
Expand Down

0 comments on commit 47843b0

Please sign in to comment.