mirror of
https://github.com/mqttr/dotfiles.git
synced 2025-12-15 04:25:50 -06:00
10 lines
218 B
Lua
10 lines
218 B
Lua
return {
|
|
'catppuccin/nvim',
|
|
priority = 1000, -- Make sure to load this before all the other start plugins.
|
|
init = function()
|
|
vim.cmd.colorscheme 'catppuccin-mocha'
|
|
|
|
vim.cmd.hi 'Comment gui=none'
|
|
end,
|
|
}
|