diff options
author | Joe <rbo@gmx.us> | 2023-12-28 11:39:54 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2023-12-28 11:39:54 +0100 |
commit | 10dc0c84a725373c305b71062a49465261872e43 (patch) | |
tree | 6afc9dc4b1a41217ad168479b367587286f675d3 /.config | |
parent | up (diff) | |
download | dotfiles-bsd-10dc0c84a725373c305b71062a49465261872e43.tar.gz dotfiles-bsd-10dc0c84a725373c305b71062a49465261872e43.tar.bz2 dotfiles-bsd-10dc0c84a725373c305b71062a49465261872e43.tar.xz dotfiles-bsd-10dc0c84a725373c305b71062a49465261872e43.tar.zst dotfiles-bsd-10dc0c84a725373c305b71062a49465261872e43.zip |
up
Diffstat (limited to '.config')
-rw-r--r-- | .config/alacritty/alacritty.yml | 2 | ||||
-rw-r--r-- | .config/nvim/lua/pack.lua | 3 | ||||
-rw-r--r-- | .config/picom.conf | 10 |
3 files changed, 10 insertions, 5 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index 5a8b90b..d5d6658 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -83,7 +83,7 @@ window: # # Window opacity as a floating point number from `0.0` to `1.0`. # The value `0.0` is completely transparent and `1.0` is opaque. - opacity: 0.87 + opacity: 0.85 scrolling: # Maximum number of lines in the scrollback buffer. diff --git a/.config/nvim/lua/pack.lua b/.config/nvim/lua/pack.lua index cfff4a5..4e117c6 100644 --- a/.config/nvim/lua/pack.lua +++ b/.config/nvim/lua/pack.lua @@ -28,7 +28,8 @@ return require('packer').startup({function(use) -- use 'brglng/vim-sidebar-manager' use 'sainnhe/gruvbox-material' use 'tpope/vim-fugitive' - use 'tpope/vim-surround' + use 'kylechui/nvim-surround' + -- use 'tpope/vim-surround' use 'nvim-lualine/lualine.nvim' use 'voldikss/vim-floaterm' use 'chrisbra/csv.vim' diff --git a/.config/picom.conf b/.config/picom.conf index facd428..e98c221 100644 --- a/.config/picom.conf +++ b/.config/picom.conf @@ -68,7 +68,7 @@ frame-opacity = 1; inactive-opacity-override = false; # Fade windows during opacity changes. -fading = true; +fading = false; # The time between steps in a fade in milliseconds. (default 10). fade-delta = 3; # Opacity change between steps while fading in. (default 0.028). @@ -76,7 +76,7 @@ fade-in-step = 0.04; # Opacity change between steps while fading out. (default 0.03). fade-out-step = 0.04; # Fade windows in/out when opening/closing -no-fading-openclose = false; +no-fading-openclose = true; # Specify a list of conditions of windows that should not be faded. fade-exclude = [ ]; @@ -110,5 +110,9 @@ wintypes: blur: { method = "dual_kawase"; - strength = 6; + strength = 8; }; + +blur-background-exclude = [ + "! class_g = 'Alacritty'" +]; |