2024-09-01 16:38:18 -04:00
|
|
|
return {
|
|
|
|
{
|
2024-09-05 21:57:47 -04:00
|
|
|
'catppuccin/nvim',
|
|
|
|
lazy = false,
|
|
|
|
priority = 1000,
|
|
|
|
config = function()
|
|
|
|
require('catppuccin').setup {
|
|
|
|
styles = {
|
|
|
|
-- comments = { 'italic' },
|
|
|
|
functions = { 'bold' },
|
|
|
|
},
|
|
|
|
integrations = {
|
|
|
|
barbar = true,
|
|
|
|
cmp = true,
|
|
|
|
mason = true,
|
|
|
|
dashboard = true,
|
|
|
|
neotree = true,
|
|
|
|
dap = true,
|
|
|
|
dap_ui = true,
|
|
|
|
notify = true,
|
|
|
|
lsp_trouble = true,
|
|
|
|
which_key = true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
vim.cmd.colorscheme 'catppuccin-mocha'
|
2024-09-01 16:38:18 -04:00
|
|
|
end,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|