set theme to catppuccin mocha

This commit is contained in:
Lorran David 2025-01-17 23:27:34 -03:00
parent 4e4499d522
commit b10c41292b
2 changed files with 27 additions and 17 deletions

View file

@ -23,21 +23,21 @@ return {
},
},
init = function()
local macchiato = require('catppuccin.palettes').get_palette 'macchiato'
vim.api.nvim_create_autocmd('FileType', {
pattern = {
'help',
'lazy',
'mason',
'notify',
'oil',
'Oil',
},
callback = function()
vim.b.miniindentscope_disable = true
end,
})
vim.api.nvim_set_hl(0, 'MiniIndentscopeSymbol', { fg = macchiato.mauve })
-- local macchiato = require('catppuccin.palettes').get_palette 'macchiato'
-- vim.api.nvim_create_autocmd('FileType', {
-- pattern = {
-- 'help',
-- 'lazy',
-- 'mason',
-- 'notify',
-- 'oil',
-- 'Oil',
-- },
-- callback = function()
-- vim.b.miniindentscope_disable = true
-- end,
-- })
-- vim.api.nvim_set_hl(0, 'MiniIndentscopeSymbol', { fg = macchiato.mauve })
end,
},