From 15c0a79922cf004d5149728072ff4e9049eed521 Mon Sep 17 00:00:00 2001 From: zachir Date: Sun, 29 Jun 2025 21:27:22 -0500 Subject: Make nvim term "leader`" key --- nvim/lua/term.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/term.lua b/nvim/lua/term.lua index 9f3062d..e7aac4e 100644 --- a/nvim/lua/term.lua +++ b/nvim/lua/term.lua @@ -7,7 +7,7 @@ require("toggleterm").setup{ return vim.o.columns * 0.4 end end, - open_mapping = [[]], -- or { [[]], [[]] } if you also use a Japanese keyboard. + open_mapping = [[`]], -- or { [[]], [[]] } if you also use a Japanese keyboard. hide_numbers = true, -- hide the number column in toggleterm buffers shade_filetypes = {}, autochdir = false, -- when neovim changes it current directory the terminal will change it's own when next it's opened -- cgit v1.2.3 From 889454ccb493db5f86aa61754f279da09e3c5b35 Mon Sep 17 00:00:00 2001 From: zachir Date: Sun, 29 Jun 2025 21:27:56 -0500 Subject: Set waybar style to use green --- waybar/style.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/waybar/style.css b/waybar/style.css index 1dc21aa..6c22341 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -53,7 +53,7 @@ window#waybar.hidden { */ #workspaces button.active { - background: #EC0101; + background: #198844; } /* @@ -167,12 +167,12 @@ label:focus { } #backlight { - background-color: #EC0101; + background-color: #198844; color: #ffffff; } #network { - background-color: #EC0101; + background-color: #198844; color: #ffffff; } @@ -188,7 +188,7 @@ label:focus { #wireplumber.muted { background-color: #1b1d1c; - color: #EC0101; + color: #198844; } #custom-media { @@ -301,7 +301,7 @@ label:focus { } #idle_inhibitor.activated { - background-color: #EC0101; + background-color: #198844; color: #ffffff; border-radius: 20px 0px 0px 20px; -- cgit v1.2.3