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 = {} config.treesitter = {}
-- theming, don't forget to run :PackerSync and reload CosmicNvim when chaning themes -- theming, don't forget to run :PackerSync and reload CosmicNvim when chaning themes
-- 'catppuccino' -- 'catppuccin'
-- 'gruvbox' -- 'gruvbox'
-- 'nord' -- 'nord'
-- 'rose-pine' -- 'rose-pine'

View file

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

View file

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