mainly colorscheme related + added dunst

This commit is contained in:
Tiago Sousa 2023-05-14 18:32:46 +01:00
parent cf75e689e5
commit 433c56f166
12 changed files with 370 additions and 20 deletions

View file

@ -1,5 +1,5 @@
require("catppuccin").setup({
flavour = "frappe", -- latte, frappe, macchiato, mocha
flavour = "macchiato", -- latte, frappe, macchiato, mocha
transparent_background = false,
term_colors = false,
@ -26,12 +26,29 @@ require("catppuccin").setup({
},
})
function ColorMyPencils(color)
color = color or "catppuccin"
require("gruvbox").setup({
undercurl = true,
underline = true,
bold = true,
italic = {
strings = false,
comments = true,
operators = false,
folds = true,
},
strikethrough = true,
invert_selection = false,
invert_signs = false,
invert_tabline = false,
invert_intend_guides = false,
inverse = true, -- invert background for search, diffs, statuslines and errors
contrast = "", -- can be "hard", "soft" or empty string
palette_overrides = {},
overrides = {},
dim_inactive = false,
transparent_mode = false,
})
vim.cmd.colorscheme(color)
-- vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
-- vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end
vim.o.background = "dark"
vim.cmd.colorscheme("catppuccin")
ColorMyPencils()