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_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
|
||||
allow_remote_control yes
|
||||
listen_on unix:$TMPDIR/kitty
|
||||
|
|
|
@ -124,7 +124,7 @@ require("lazy").setup({
|
|||
|
||||
require("catppuccin").setup({
|
||||
flavour = "mocha",
|
||||
transparent_background = false,
|
||||
transparent_background = true,
|
||||
color_overrides = {
|
||||
mocha = {
|
||||
-- https://github.com/catppuccin/nvim/blob/main/lua/catppuccin/palettes/mocha.lua
|
||||
|
@ -150,15 +150,19 @@ require("lazy").setup({
|
|||
markdownLinkText = {
|
||||
style = {},
|
||||
},
|
||||
-- Support mini.statusline
|
||||
StatusLineNC = {
|
||||
fg = color_oxocarbon.pink,
|
||||
-- Support nvim-tree.lua
|
||||
NvimTreeStatuslineNc = {
|
||||
link = "NuimTreeStatusline",
|
||||
},
|
||||
-- Support gitsigns.nvim
|
||||
GitSignsCurrentLineBlame = {
|
||||
fg = colors.overlay1,
|
||||
style = { "italic" },
|
||||
},
|
||||
-- Support mini.statusline
|
||||
StatusLineNC = {
|
||||
fg = color_oxocarbon.pink,
|
||||
},
|
||||
}
|
||||
end,
|
||||
})
|
||||
|
|
|
@ -82,6 +82,9 @@ return {
|
|||
tab_and_split_indices_are_zero_based = true,
|
||||
tab_max_width = 24,
|
||||
|
||||
window_background_opacity = 0.95,
|
||||
macos_window_background_blur = 32,
|
||||
|
||||
native_macos_fullscreen_mode = true,
|
||||
|
||||
default_cursor_style = current_font.default_cursor_style,
|
||||
|
|
Loading…
Reference in New Issue