Compare commits
3 Commits
79dcac114a
...
7373cdbdfd
Author | SHA1 | Date | |
---|---|---|---|
7373cdbdfd | |||
385c4b9c2c | |||
0a7fd86ce2 |
@ -1,12 +1,12 @@
|
|||||||
require("catppuccin").setup({
|
require("catppuccin").setup({
|
||||||
flavour = "mocha", -- latte, frappe, macchiato, mocha
|
flavour = "mocha", -- latte, frappe, macchiato, mocha
|
||||||
background = { -- :h background
|
background = { -- :h background
|
||||||
light = "latte",
|
light = "latte",
|
||||||
dark = "mocha",
|
dark = "mocha",
|
||||||
},
|
},
|
||||||
transparent_background = false,
|
transparent_background = false,
|
||||||
no_italic = false, -- Force no italic
|
no_italic = false, -- Force no italic
|
||||||
no_bold = false, -- Force no bold
|
no_bold = false, -- Force no bold
|
||||||
styles = {
|
styles = {
|
||||||
comments = { "italic" },
|
comments = { "italic" },
|
||||||
conditionals = {},
|
conditionals = {},
|
||||||
@ -22,11 +22,6 @@ require("catppuccin").setup({
|
|||||||
operators = {},
|
operators = {},
|
||||||
},
|
},
|
||||||
color_overrides = {
|
color_overrides = {
|
||||||
mocha = {
|
|
||||||
base = "#1c1c1c",
|
|
||||||
mantle = "#1c1c1c",
|
|
||||||
crust = "#1c1c1c",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
integrations = {
|
integrations = {
|
||||||
cmp = true,
|
cmp = true,
|
||||||
@ -34,5 +29,5 @@ require("catppuccin").setup({
|
|||||||
})
|
})
|
||||||
|
|
||||||
-- setup must be called before loading
|
-- setup must be called before loading
|
||||||
vim.cmd('colorscheme catppuccin-mocha')
|
vim.cmd('colorscheme catppuccin')
|
||||||
vim.api.nvim_set_hl(0, "Normal", { guibg = NONE, ctermbg = NONE })
|
vim.api.nvim_set_hl(0, "Normal", { guibg = NONE, ctermbg = NONE })
|
||||||
|
@ -5,9 +5,13 @@ 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'
|
||||||
|
|
||||||
config.color_scheme = 'catppuccin-mocha'
|
if wezterm.gui.get_appearance():find "Dark" then
|
||||||
config.colors = {
|
config.color_scheme = 'Catppuccin Mocha'
|
||||||
background = 'black'
|
config.colors = {
|
||||||
}
|
background = 'black'
|
||||||
|
}
|
||||||
|
else
|
||||||
|
config.color_scheme = 'Catppuccin Latte'
|
||||||
|
end
|
||||||
|
|
||||||
return config
|
return config
|
||||||
|
2
.zshrc
2
.zshrc
@ -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.plugin.zsh
|
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export CONFIGDIR="${HOME}/.config"
|
export CONFIGDIR="${HOME}/.config"
|
||||||
|
Loading…
Reference in New Issue
Block a user