diff options
Diffstat (limited to '')
-rw-r--r-- | .config/alacritty/alacritty.yml | 2 | ||||
-rw-r--r-- | .config/nvim/after/plugin/treesitter.lua | 8 | ||||
-rw-r--r-- | .config/nvim/lua/settings.lua | 3 | ||||
-rw-r--r-- | .config/picom.conf | 7 |
4 files changed, 16 insertions, 4 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index d9787cb..5a8b90b 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.92 + opacity: 0.87 scrolling: # Maximum number of lines in the scrollback buffer. diff --git a/.config/nvim/after/plugin/treesitter.lua b/.config/nvim/after/plugin/treesitter.lua index 7865930..bbe666f 100644 --- a/.config/nvim/after/plugin/treesitter.lua +++ b/.config/nvim/after/plugin/treesitter.lua @@ -1,6 +1,6 @@ require'nvim-treesitter.configs'.setup { -- A list of parser names, or "all" (the five listed parsers should always be installed) - ensure_installed = { "c", "cpp", "lua", "vim", "vimdoc", "query", "go", "rust" }, + ensure_installed = { 'c', 'cpp', 'lua', 'vim', 'vimdoc', 'query', 'go', 'rust', 'yaml' }, -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false, @@ -18,4 +18,10 @@ require'nvim-treesitter.configs'.setup { -- Instead of true it can also be a list of languages additional_vim_regex_highlighting = false, }, + incremental_selection = { + enable = true, + }, + indent = { + enable = true, + }, } diff --git a/.config/nvim/lua/settings.lua b/.config/nvim/lua/settings.lua index a7374ca..2079677 100644 --- a/.config/nvim/lua/settings.lua +++ b/.config/nvim/lua/settings.lua @@ -13,7 +13,8 @@ set shortmess+=c vim.opt.completeopt = 'menuone,noinsert,noselect,preview' vim.opt.cursorline = true vim.opt.encoding = 'utf-8' -vim.opt.go = 'a' +-- vim.opt.go = 'a' +vim.opt.termguicolors = false vim.opt.hidden = true vim.opt.makeprg = 'make' vim.opt.mouse = 'a' diff --git a/.config/picom.conf b/.config/picom.conf index 89bc38b..facd428 100644 --- a/.config/picom.conf +++ b/.config/picom.conf @@ -1,9 +1,9 @@ # basic configuration +# experimental-backends = true; backend = "glx"; paint-on-overlay = true; vsync = true; unredir-if-possible = false; -# experimental-backends = true; no-use-damage = true; # Inactive windows diming @@ -107,3 +107,8 @@ wintypes: fade = false; } }; + +blur: { + method = "dual_kawase"; + strength = 6; +}; |