diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/i3/config | 2 | ||||
-rw-r--r-- | .config/nvim/lua/user/lsp/common.lua | 3 | ||||
-rw-r--r-- | .config/nvim/lua/user/lsp/rust.lua | 3 | ||||
-rw-r--r-- | .config/picom/picom.conf | 4 |
4 files changed, 8 insertions, 4 deletions
diff --git a/.config/i3/config b/.config/i3/config index b1c7538..9e6b5cb 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -186,7 +186,7 @@ assign [class="dotnet"] workspace $ws7 assign [class="^Minecraft.*$"] workspace $ws7 assign [class="vlc"] workspace $ws8 assign [class="spotify"] workspace $ws8 -#assign [class="GigaQt"] workspace $ws9 +assign [class="Spotyfi"] workspace $ws8 #monitors diff --git a/.config/nvim/lua/user/lsp/common.lua b/.config/nvim/lua/user/lsp/common.lua index 91a663c..4358e2d 100644 --- a/.config/nvim/lua/user/lsp/common.lua +++ b/.config/nvim/lua/user/lsp/common.lua @@ -8,8 +8,9 @@ end define_sign({name = "DiagnosticSignError", text = '', hl = 'ErrorMsg'}) define_sign({name = "DiagnosticSignWarn", text = '', hl = 'IncSearch'}) -define_sign({name = "DiagnosticSignHint", text = '', hl = 'Search'}) +-- define_sign({name = "DiagnosticSignHint", text = '', hl = 'Search'}) -- define_sign({name = "DiagnosticSignInfo", text = ''}) +vim.fn.sign_define("DiagnosticSignHint", { texthl="DiagnosticSignHint", linehl = "Ignore", text = "", numhl = 'TermCursor' }) vim.fn.sign_define("DiagnosticSignInfo", { texthl="Ignore", text = "", numhl = 'TermCursor' }) vim.diagnostic.config{ diff --git a/.config/nvim/lua/user/lsp/rust.lua b/.config/nvim/lua/user/lsp/rust.lua index a192f1c..5232861 100644 --- a/.config/nvim/lua/user/lsp/rust.lua +++ b/.config/nvim/lua/user/lsp/rust.lua @@ -10,6 +10,9 @@ rust.setup{ cargo = { features = {"multithread"}, }, + check = { + command = "clippy", + }, }, } diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index 3ca757e..c5ae784 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf @@ -13,7 +13,7 @@ rounded-corners-exclude = [ ]; opacity-rule = [ "100: name *= 'YouTube'", - "100: name *= 'hub'", // not sus + "100: name *= 'Pornhub'", // not sus "100: name ~= 'ヰカちゃん♡♡~ – \\\\([0-9]+\\\\)'", // my girlfriend is more important than my rice "100: name ~= 'Вика Цой'", @@ -24,7 +24,7 @@ opacity-rule = [ // "75: class_g = 'Sakura' && name *= 'BashTOP'", // commented out for better times "84: class_g = 'Sakura' && focused", - "63: class_g = 'Sakura'", + "69: class_g = 'Sakura'", ]; blur = { method = "gaussian"; |