mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-31 23:40:03 +02:00
Split config into multiple files based on kickstart.modular
This commit is contained in:
parent
62f8ac3e1a
commit
3e6a648ef1
23 changed files with 1254 additions and 1102 deletions
13
lua/themes/catppuccin.lua
Normal file
13
lua/themes/catppuccin.lua
Normal file
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
{ -- You can easily change to a different colorscheme.
|
||||
'catppuccin/nvim',
|
||||
priority = 1000, -- Make sure to load this before all the other start plugins.
|
||||
init = function()
|
||||
-- Load the colorscheme here.
|
||||
vim.cmd.colorscheme 'catppuccin-mocha'
|
||||
|
||||
-- You can configure highlights by doing something like:
|
||||
vim.cmd.hi 'Comment gui=none'
|
||||
end,
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue