fix(themes): catppuccin reference fix
This commit is contained in:
parent
2860270a13
commit
d8c561dbc1
3 changed files with 4 additions and 4 deletions
|
@ -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'
|
||||
|
|
|
@ -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',}
|
||||
|
|
|
@ -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({
|
||||
|
|
Loading…
Add table
Reference in a new issue