set theme to catppuccin mocha
This commit is contained in:
parent
4e4499d522
commit
b10c41292b
|
@ -47,7 +47,7 @@ return {
|
|||
},
|
||||
}
|
||||
|
||||
vim.cmd.colorscheme 'catppuccin-macchiato'
|
||||
vim.cmd.colorscheme 'catppuccin-mocha'
|
||||
|
||||
-- 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
|
||||
|
@ -102,5 +102,15 @@ return {
|
|||
vim.cmd('colorscheme vscode')
|
||||
end,
|
||||
enabled = false,
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
'calind/selenized.nvim',
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'selenized'
|
||||
end,
|
||||
enabled = false,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue