fix(themes): catppuccin reference fix

This commit is contained in:
Matt Leong 2021-11-16 08:03:41 -08:00
parent 2860270a13
commit d8c561dbc1
3 changed files with 4 additions and 4 deletions

View file

@ -18,7 +18,7 @@ config.statusline = {
config.treesitter = {}
-- theming, don't forget to run :PackerSync and reload CosmicNvim when chaning themes
-- 'catppuccino'
-- 'catppuccin'
-- 'gruvbox'
-- 'nord'
-- 'rose-pine'

View file

@ -7,7 +7,7 @@ end
-- these settings will be merged with any settings definined in config.lua
local default_config = {
-- theme = 'Catppuccino',
-- theme = 'catppuccin',
theme = 'tokyonight',
lsp = {
format_on_save = true, -- true/false or table of filetypes {'.ts', '.js',}

View file

@ -2,7 +2,7 @@ local M = {}
M.supported_themes = {
'tokyonight',
'catppuccino',
'catppuccin',
'gruvbox',
'rose-pine',
'nord',
@ -27,7 +27,7 @@ function M.init(use, config)
vim.cmd('color catppuccin')
end,
branch = 'dev-remaster',
disable = config.theme ~= 'catppuccino',
disable = config.theme ~= 'catppuccin',
})
use({