Compare commits

..

No commits in common. "7373cdbdfdf35bc33e922d574c36a0b0aa05203d" and "79dcac114a20703a620ebc6ede574c6ddd6ea24f" have entirely different histories.

3 changed files with 15 additions and 14 deletions

View File

@ -22,6 +22,11 @@ require("catppuccin").setup({
operators = {}, operators = {},
}, },
color_overrides = { color_overrides = {
mocha = {
base = "#1c1c1c",
mantle = "#1c1c1c",
crust = "#1c1c1c",
},
}, },
integrations = { integrations = {
cmp = true, cmp = true,
@ -29,5 +34,5 @@ require("catppuccin").setup({
}) })
-- setup must be called before loading -- setup must be called before loading
vim.cmd('colorscheme catppuccin') vim.cmd('colorscheme catppuccin-mocha')
vim.api.nvim_set_hl(0, "Normal", { guibg = NONE, ctermbg = NONE }) vim.api.nvim_set_hl(0, "Normal", { guibg = NONE, ctermbg = NONE })

View File

@ -5,13 +5,9 @@ config.font = wezterm.font('Monaco Nerd Font Mono', { weight = 'Medium' })
config.font_size = 12 config.font_size = 12
config.freetype_load_target = 'Normal' config.freetype_load_target = 'Normal'
if wezterm.gui.get_appearance():find "Dark" then config.color_scheme = 'catppuccin-mocha'
config.color_scheme = 'Catppuccin Mocha'
config.colors = { config.colors = {
background = 'black' background = 'black'
} }
else
config.color_scheme = 'Catppuccin Latte'
end
return config return config

2
.zshrc
View File

@ -14,7 +14,7 @@ if [[ $(uname) == "Darwin" ]]; then
else else
export PATH="${PATH}:${HOME}/.local/bin:/usr/local/sbin:${HOME}/.local/share/gem/ruby/2.0.0/bin:/usr/local/bin" export PATH="${PATH}:${HOME}/.local/bin:/usr/local/sbin:${HOME}/.local/share/gem/ruby/2.0.0/bin:/usr/local/bin"
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh
fi fi
export CONFIGDIR="${HOME}/.config" export CONFIGDIR="${HOME}/.config"