set theme to catppuccin

This commit is contained in:
Lorran David 2024-09-14 18:51:03 -03:00
parent d96b004a24
commit 84666b856a
1 changed files with 30 additions and 3 deletions

View File

@ -837,11 +837,38 @@ require('lazy').setup({
-- Colorscheme -- Colorscheme
{ {
'EdenEast/nightfox.nvim', 'catppuccin/nvim',
lazy = false,
priority = 1000,
config = function() config = function()
require('nightfox').setup { require('catppuccin').setup {
vim.cmd.colorscheme 'carbonfox', integrations = {
cmp = true,
fidget = true,
gitsigns = true,
harpoon = true,
indent_blankline = {
enabled = false,
scope_color = 'sapphire',
colored_indent_levels = false,
},
mason = true,
native_lsp = { enabled = true },
noice = true,
notify = true,
symbols_outline = true,
telescope = true,
treesitter = true,
treesitter_context = true,
},
} }
vim.cmd.colorscheme 'catppuccin-macchiato'
-- Hide all semantic highlights until upstream issues are resolved (https://github.com/catppuccin/nvim/issues/480)
for _, group in ipairs(vim.fn.getcompletion('@lsp', 'highlight')) do
vim.api.nvim_set_hl(0, group, {})
end
end, end,
}, },