feature: themes
This commit is contained in:
parent
7c9408ea3c
commit
224bd5911c
3 changed files with 29 additions and 2 deletions
26
lua/custom/plugins/themes.lua
Normal file
26
lua/custom/plugins/themes.lua
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
return {
|
||||
{
|
||||
'catppuccin/nvim',
|
||||
name = 'catppuccin',
|
||||
priority = 1000,
|
||||
init = function()
|
||||
--[[ vim.cmd.colorscheme 'catppuccin-mocha' ]]
|
||||
--[[ vim.cmd.hi 'Comment gui=none' ]]
|
||||
end,
|
||||
},
|
||||
{
|
||||
'rebelot/kanagawa.nvim',
|
||||
name = 'kanagawa',
|
||||
priority = 1000,
|
||||
init = function()
|
||||
vim.cmd.colorscheme 'kanagawa'
|
||||
vim.cmd.hi 'Comment gui=none'
|
||||
end,
|
||||
},
|
||||
{
|
||||
'morhetz/gruvbox',
|
||||
name = 'gruvbox',
|
||||
priority = 1000,
|
||||
init = function() end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue