fix: made telescope transparent again

This commit is contained in:
əlemi 2022-10-02 00:56:19 +02:00
parent 52550e009b
commit 2cb96beff9
No known key found for this signature in database
GPG key ID: BBCBFE5D7244634E

View file

@ -283,17 +283,8 @@ end
function PALETTE:set_telescope_colors()
-- FG BG ATTR
vim.api.nvim_set_hl(0, "TelescopeBorder", HIGHLIGHT(self.black.bright, nil, nil));
-- TODO
-- vim.api.nvim_set_hl(0, "TelescopePromptBorder", highlight(nil, nil, nil))
-- vim.api.nvim_set_hl(0, "TelescopePromptNormal", highlight(nil, nil, nil));
-- vim.api.nvim_set_hl(0, "TelescopePromptPrefix", highlight(nil, nil, nil));
-- vim.api.nvim_set_hl(0, "TelescopeNormal", highlight(nil, nil, nil));
-- vim.api.nvim_set_hl(0, "TelescopePreviewTitle", highlight(nil, nil, nil));
-- vim.api.nvim_set_hl(0, "TelescopePromptTitle", highlight(nil, nil, nil));
-- vim.api.nvim_set_hl(0, "TelescopeResultsTitle", highlight(nil, nil, nil));
-- vim.api.nvim_set_hl(0, "TelescopeSelection", highlight(nil, nil, nil));
-- vim.api.nvim_set_hl(0, "TelescopePreviewLine", highlight(nil, nil, nil));
vim.api.nvim_set_hl(0, "TelescopeBorder", HIGHLIGHT(self.black.bright, self.none.normal, nil));
vim.api.nvim_set_hl(0, "TelescopeNormal", HIGHLIGHT(nil, self.none.normal, nil));
end
function PALETTE:set_dap_colors()