set theme to catppuccin
This commit is contained in:
parent
d96b004a24
commit
84666b856a
33
init.lua
33
init.lua
|
@ -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,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue