fix: forgot to add files to last commit

This commit is contained in:
matt1432 2023-06-03 23:12:58 -04:00
parent 22ab0ff667
commit 36e307210b
12 changed files with 799 additions and 0 deletions
nvim/lua/custom/plugins

View file

@ -0,0 +1,13 @@
return {
{
"catppuccin/nvim",
name = "catppuccin",
config = function()
Colors = require("catppuccin.palettes").get_palette("mocha")
require("catppuccin").setup({
transparent_background = true
})
vim.cmd.colorscheme "catppuccin-mocha"
end,
},
}

View file

@ -0,0 +1,5 @@
-- 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 {}