nvim config, coc settings, i3confg, idk, I need to overhaul my dotfiles

This commit is contained in:
Mark Riedesel 2021-07-23 05:34:09 -05:00
parent e230426e27
commit 192a283141
4 changed files with 37 additions and 6 deletions

View file

@ -137,6 +137,7 @@ font xft:Roboto 13
# app specific launch flags # app specific launch flags
for_window [class="Peek"] floating enable for_window [class="Peek"] floating enable
for_window [class="Puppet Pounders"] floating enable
set_from_resource $fg i3wm.color7 set_from_resource $fg i3wm.color7
set_from_resource $bg i3wm.color2 set_from_resource $bg i3wm.color2

View file

@ -25,5 +25,13 @@
"port": 6008 "port": 6008
} }
}, },
"tsserver.log": "true" "tsserver.log": "true",
"tsserver.tsdk": ".yarn/sdks/typescript/lib",
"eslint": {
"packageManager": "yarn",
"nodePath": ".yarn/sdks",
"format": {
"enable": true
}
}
} }

View file

@ -83,6 +83,7 @@ Plug 'posva/vim-vue'
Plug 'numirias/semshi', {'do': ':UpdateRemotePlugins'} Plug 'numirias/semshi', {'do': ':UpdateRemotePlugins'}
Plug 'pantharshit00/vim-prisma' Plug 'pantharshit00/vim-prisma'
Plug 'alexlafroscia/postcss-syntax.vim' Plug 'alexlafroscia/postcss-syntax.vim'
Plug 'habamax/vim-godot'
" functionality " functionality
Plug 'tpope/vim-sensible' Plug 'tpope/vim-sensible'

View file

@ -1,4 +1,7 @@
#backend = "xrender"; #backend = "xrender"
backend = "glx";
xrender-sync-fence =true;
vsync = true;
mark-wmwin-focused = true; mark-wmwin-focused = true;
detect-client-opacity = true; detect-client-opacity = true;
@ -11,8 +14,15 @@ fade-delta = 20;
fade-in-step = 0.2; fade-in-step = 0.2;
fade-out-step = 0.2; fade-out-step = 0.2;
blur-kern = "3x3box" # blur-kern = "3x3box"
blur-background = false; # blur-background = false;
blur: {
method = "kawase";
strength = 5;
background = false;
background-frame = false;
background-fixed = false;
}
### Shadows ### Shadows
shadow = true; shadow = true;
@ -20,11 +30,22 @@ shadow-opacity = 0.3;
#shadow-radius = 3; #shadow-radius = 3;
shadow-exclude = [ 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 = [ opacity-rule = [
"98:class_g = 'kitty' && focused", "98:class_g = 'kitty' && focused",
"95:class_g = 'kitty' && !focused", "90:class_g = 'kitty' && !focused",
"98:name *= 'polybar'" "98:name *= 'polybar'"
]; ];