Thanks for this! I'm just getting started with neovim, wanted to do it with v0.12 so that I wouldn't have to learn a third-party package manager. This was a really helpful jumpstart.
I found that the color scheme didn't work for me off the bat. I had to add a line to install the package for the color scheme before running vim.cmd.colorscheme("catppuccin"). I did this with
-- INFO: catppuccin color scheme
vim.pack.add({ "https://github.com/catppuccin/nvim" }, { confirm = false })
Thanks for this! I'm just getting started with neovim, wanted to do it with v0.12 so that I wouldn't have to learn a third-party package manager. This was a really helpful jumpstart.
I found that the color scheme didn't work for me off the bat. I had to add a line to install the package for the color scheme before running
vim.cmd.colorscheme("catppuccin"). I did this with