config: background blur and opacity for kitty, nvim, and wezterm
parent
ec4df521e0
commit
c81b6064c2
|
@ -67,6 +67,10 @@ tab_bar_align center
|
||||||
tab_bar_style powerline
|
tab_bar_style powerline
|
||||||
tab_powerline_style round
|
tab_powerline_style round
|
||||||
|
|
||||||
|
# https://sw.kovidgoyal.net/kitty/conf/#color-scheme
|
||||||
|
background_opacity 0.95
|
||||||
|
background_blur 32
|
||||||
|
|
||||||
# https://sw.kovidgoyal.net/kitty/conf/#advanced
|
# https://sw.kovidgoyal.net/kitty/conf/#advanced
|
||||||
allow_remote_control yes
|
allow_remote_control yes
|
||||||
listen_on unix:$TMPDIR/kitty
|
listen_on unix:$TMPDIR/kitty
|
||||||
|
|
|
@ -124,7 +124,7 @@ require("lazy").setup({
|
||||||
|
|
||||||
require("catppuccin").setup({
|
require("catppuccin").setup({
|
||||||
flavour = "mocha",
|
flavour = "mocha",
|
||||||
transparent_background = false,
|
transparent_background = true,
|
||||||
color_overrides = {
|
color_overrides = {
|
||||||
mocha = {
|
mocha = {
|
||||||
-- https://github.com/catppuccin/nvim/blob/main/lua/catppuccin/palettes/mocha.lua
|
-- https://github.com/catppuccin/nvim/blob/main/lua/catppuccin/palettes/mocha.lua
|
||||||
|
@ -150,15 +150,19 @@ require("lazy").setup({
|
||||||
markdownLinkText = {
|
markdownLinkText = {
|
||||||
style = {},
|
style = {},
|
||||||
},
|
},
|
||||||
-- Support mini.statusline
|
-- Support nvim-tree.lua
|
||||||
StatusLineNC = {
|
NvimTreeStatuslineNc = {
|
||||||
fg = color_oxocarbon.pink,
|
link = "NuimTreeStatusline",
|
||||||
},
|
},
|
||||||
-- Support gitsigns.nvim
|
-- Support gitsigns.nvim
|
||||||
GitSignsCurrentLineBlame = {
|
GitSignsCurrentLineBlame = {
|
||||||
fg = colors.overlay1,
|
fg = colors.overlay1,
|
||||||
style = { "italic" },
|
style = { "italic" },
|
||||||
},
|
},
|
||||||
|
-- Support mini.statusline
|
||||||
|
StatusLineNC = {
|
||||||
|
fg = color_oxocarbon.pink,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
|
@ -82,6 +82,9 @@ return {
|
||||||
tab_and_split_indices_are_zero_based = true,
|
tab_and_split_indices_are_zero_based = true,
|
||||||
tab_max_width = 24,
|
tab_max_width = 24,
|
||||||
|
|
||||||
|
window_background_opacity = 0.95,
|
||||||
|
macos_window_background_blur = 32,
|
||||||
|
|
||||||
native_macos_fullscreen_mode = true,
|
native_macos_fullscreen_mode = true,
|
||||||
|
|
||||||
default_cursor_style = current_font.default_cursor_style,
|
default_cursor_style = current_font.default_cursor_style,
|
||||||
|
|
Loading…
Reference in New Issue