Added styling to Telescope and floating windows

This commit is contained in:
Dreaded_X 2024-04-15 05:21:35 +02:00
parent f6b0272bcc
commit b361c8863e
Signed by: Dreaded_X
GPG Key ID: FA5F485356B0D2D4

View File

@ -1,13 +1,13 @@
-- https://github.com/ellisonleao/gruvbox.nvim -- https://github.com/ellisonleao/gruvbox.nvim
return { return {
'ellisonleao/gruvbox.nvim', "ellisonleao/gruvbox.nvim",
commit = "487598d979868224aff92cf8818195c1a60e5dfe", -- Commit before things start breaking commit = "487598d979868224aff92cf8818195c1a60e5dfe", -- Commit before things start breaking
priority = 1000, priority = 1000,
config = function() config = function()
local config = require("gruvbox").config local config = require("gruvbox").config
local colors = require("gruvbox.palette").get_base_colors(vim.o.background, config.contrast) local colors = require("gruvbox.palette").get_base_colors(vim.o.background, config.contrast)
require('gruvbox').setup { require("gruvbox").setup({
background = "dark", background = "dark",
italic = { italic = {
strings = false, strings = false,
@ -16,9 +16,21 @@ return {
YankHighlight = { fg = colors.blue, bg = colors.bg0, reverse = config.inverse }, YankHighlight = { fg = colors.blue, bg = colors.bg0, reverse = config.inverse },
IncSearch = { fg = colors.aqua }, IncSearch = { fg = colors.aqua },
Search = { fg = colors.aqua }, Search = { fg = colors.aqua },
} NormalFloat = { bg = colors.bg0 },
} FloatBorder = { fg = colors.bg4 },
TelescopePromptTitle = { fg = colors.fg4 },
TelescopePromptBorder = { fg = colors.bg4 },
TelescopePromptPrefix = { fg = colors.red },
TelescopePreviewTitle = { fg = colors.fg4 },
TelescopePreviewBorder = { fg = colors.bg4 },
TelescopeResultsTitle = { fg = colors.fg4 },
TelescopeResultsBorder = { fg = colors.bg4 },
TelescopeMatching = { fg = colors.aqua, bold = true },
TelescopeSelection = { fg = colors.blue },
TelescopeSelectionCaret = { fg = colors.red },
},
})
vim.cmd.colorscheme 'gruvbox' vim.cmd.colorscheme("gruvbox")
end, end,
} }