Work theme options

This commit is contained in:
Christian Nieves
2023-11-07 18:51:02 +00:00
parent f129f0f93d
commit 73cfb41191

View File

@ -10,7 +10,8 @@ return {
require("ayu").setup({ require("ayu").setup({
mirage = false, -- Set to `true` to use `mirage` variant instead of `dark` for dark background. mirage = false, -- Set to `true` to use `mirage` variant instead of `dark` for dark background.
overrides = {}, -- A dictionary of group names, each associated with a dictionary of parameters (`bg`, `fg`, `sp` and `style`) and colors in hex. overrides = {}, -- A dictionary of group names, each associated with a dictionary of parameters (`bg`, `fg`, `sp` and `style`) and colors in hex.
vim.cmd("colorscheme ayu"), -- vim.cmd("colorscheme ayu"),
-- vim.cmd("colorscheme ayu-mirage"),
}) })
end, end,
}, },
@ -41,11 +42,11 @@ return {
lazy = not use_google(), -- make sure we load this during startup if it is your main colorscheme lazy = not use_google(), -- make sure we load this during startup if it is your main colorscheme
cond = use_google(), cond = use_google(),
config = function() config = function()
vim.g.catppuccin_flavour = "macchiato" -- latte, frappe, macchiato, mocha vim.g.catppuccin_flavour = "mocha" -- latte, frappe, macchiato, mocha
local colors = require("catppuccin.palettes").get_palette() local colors = require("catppuccin.palettes").get_palette()
require("catppuccin").setup({ require("catppuccin").setup({
flavour = "macchiato", flavour = "mocha",
integrations = { integrations = {
cmp = true, cmp = true,
-- coc_nvim = false, -- coc_nvim = false,
@ -55,7 +56,7 @@ return {
gitgutter = true, gitgutter = true,
gitsigns = true, gitsigns = true,
-- hop = false, -- hop = false,
-- illuminate = false, illuminate = true,
-- leap = false, -- leap = false,
-- lightspeed = false, -- lightspeed = false,
-- lsp_saga = false, -- lsp_saga = false,
@ -77,7 +78,6 @@ return {
-- vim_sneak = false, -- vim_sneak = false,
-- vimwiki = false, -- vimwiki = false,
which_key = true, which_key = true,
-- Special integrations, see https://github.com/catppuccin/nvim#special-integrations -- Special integrations, see https://github.com/catppuccin/nvim#special-integrations
dap = { dap = {
enabled = false, enabled = false,
@ -89,12 +89,12 @@ return {
}, },
native_lsp = { native_lsp = {
enabled = true, enabled = true,
virtual_text = { -- virtual_text = {
errors = { "italic" }, -- errors = { "italic" },
hints = { "italic" }, -- hints = { "italic" },
warnings = { "italic" }, -- warnings = { "italic" },
information = { "italic" }, -- information = { "italic" },
}, -- },
underlines = { underlines = {
errors = { "underline" }, errors = { "underline" },
hints = { "underline" }, hints = { "underline" },
@ -111,7 +111,7 @@ return {
}, },
}) })
-- vim.api.nvim_command("colorscheme catppuccin") vim.api.nvim_command("colorscheme catppuccin")
end, end,
}, },
} }