Change telescope to dropdown, telescope now uses select_drow action, remove the hide telescope borders in tokyonight, change visible dirs and tokens in lspsaga lualine status, clangd header/source toggle now also uses drop over edit

This commit is contained in:
Martin Larsson 2024-01-29 01:44:58 +01:00
parent 8eecbb115e
commit 611c361951
6 changed files with 206 additions and 45 deletions

View file

@ -32,34 +32,34 @@ return {
---@param highlights Highlights
---@param colors ColorScheme
on_highlights = function(highlights, colors)
local prompt = "#2d3149"
highlights.TelescopeNormal = {
bg = colors.bg_dark,
fg = colors.fg_dark,
}
highlights.TelescopeBorder = {
bg = colors.bg_dark,
fg = colors.bg_dark,
}
highlights.TelescopePromptNormal = {
bg = prompt,
}
highlights.TelescopePromptBorder = {
bg = prompt,
fg = prompt,
}
highlights.TelescopePromptTitle = {
bg = prompt,
fg = prompt,
}
highlights.TelescopePreviewTitle = {
bg = colors.bg_dark,
fg = colors.bg_dark,
}
highlights.TelescopeResultsTitle = {
bg = colors.bg_dark,
fg = colors.bg_dark,
}
-- local prompt = "#2d3149"
-- highlights.TelescopeNormal = {
-- bg = colors.bg_dark,
-- fg = colors.fg_dark,
-- }
-- highlights.TelescopeBorder = {
-- bg = colors.bg_dark,
-- fg = colors.bg_dark,
-- }
-- highlights.TelescopePromptNormal = {
-- bg = prompt,
-- }
-- highlights.TelescopePromptBorder = {
-- bg = prompt,
-- fg = prompt,
-- }
-- highlights.TelescopePromptTitle = {
-- bg = prompt,
-- fg = prompt,
-- }
-- highlights.TelescopePreviewTitle = {
-- bg = colors.bg_dark,
-- fg = colors.bg_dark,
-- }
-- highlights.TelescopeResultsTitle = {
-- bg = colors.bg_dark,
-- fg = colors.bg_dark,
-- }
end,
})