nvim config, coc settings, i3confg, idk, I need to overhaul my dotfiles
This commit is contained in:
parent
e230426e27
commit
192a283141
4 changed files with 37 additions and 6 deletions
|
@ -137,6 +137,7 @@ font xft:Roboto 13
|
|||
|
||||
# app specific launch flags
|
||||
for_window [class="Peek"] floating enable
|
||||
for_window [class="Puppet Pounders"] floating enable
|
||||
|
||||
set_from_resource $fg i3wm.color7
|
||||
set_from_resource $bg i3wm.color2
|
||||
|
|
|
@ -25,5 +25,13 @@
|
|||
"port": 6008
|
||||
}
|
||||
},
|
||||
"tsserver.log": "true"
|
||||
"tsserver.log": "true",
|
||||
"tsserver.tsdk": ".yarn/sdks/typescript/lib",
|
||||
"eslint": {
|
||||
"packageManager": "yarn",
|
||||
"nodePath": ".yarn/sdks",
|
||||
"format": {
|
||||
"enable": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -83,6 +83,7 @@ Plug 'posva/vim-vue'
|
|||
Plug 'numirias/semshi', {'do': ':UpdateRemotePlugins'}
|
||||
Plug 'pantharshit00/vim-prisma'
|
||||
Plug 'alexlafroscia/postcss-syntax.vim'
|
||||
Plug 'habamax/vim-godot'
|
||||
|
||||
" functionality
|
||||
Plug 'tpope/vim-sensible'
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
#backend = "xrender";
|
||||
#backend = "xrender"
|
||||
backend = "glx";
|
||||
xrender-sync-fence =true;
|
||||
vsync = true;
|
||||
mark-wmwin-focused = true;
|
||||
detect-client-opacity = true;
|
||||
|
||||
|
@ -11,20 +14,38 @@ fade-delta = 20;
|
|||
fade-in-step = 0.2;
|
||||
fade-out-step = 0.2;
|
||||
|
||||
blur-kern = "3x3box"
|
||||
blur-background = false;
|
||||
# blur-kern = "3x3box"
|
||||
# blur-background = false;
|
||||
blur: {
|
||||
method = "kawase";
|
||||
strength = 5;
|
||||
background = false;
|
||||
background-frame = false;
|
||||
background-fixed = false;
|
||||
}
|
||||
|
||||
### Shadows
|
||||
shadow = true;
|
||||
shadow-opacity = 0.3;
|
||||
#shadow-radius = 3;
|
||||
shadow-exclude = [
|
||||
"class_g = 'slop'",
|
||||
"class_g = 'slop'",
|
||||
"class_g ~= 'Peek'"
|
||||
]
|
||||
|
||||
### Rounded corners
|
||||
#corner-radius = 10.0;
|
||||
|
||||
blur-background-exclude = [
|
||||
"class_g ~= 'Peek'",
|
||||
"class_g ~= 'maim'",
|
||||
"class_i ~= 'maim'",
|
||||
"class_g ~= 'slop'",
|
||||
"name ~= 'maim'"
|
||||
]
|
||||
opacity-rule = [
|
||||
"98:class_g = 'kitty' && focused",
|
||||
"95:class_g = 'kitty' && !focused",
|
||||
"90:class_g = 'kitty' && !focused",
|
||||
"98:name *= 'polybar'"
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue