Files
nvim/lua/custom/plugins/init.lua
T
2024-07-14 11:33:53 -04:00

22 lines
712 B
Lua

-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {
{
'catppuccin/nvim',
name = 'catppuccin',
opts = { transparent_background = true },
init = function()
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'catppuccin'
-- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none'
end,
priority = 1000,
},
}