Revert "fix: bw theme popovers in tmux and helix"

This reverts commit 5acfc7ecdd.
This commit is contained in:
Tim Schubert 2025-05-17 12:34:06 +02:00
parent 2917f96631
commit 8d54f859a0
No known key found for this signature in database
2 changed files with 2 additions and 36 deletions

View file

@ -1,34 +0,0 @@
"ui.background" = {bg="white"}
"ui.text" = "black"
"ui.linenr" = {bg="white", fg="black"}
"ui.linenr.selected" = {bg="white", fg="black"}
"ui.selection" = {modifiers=["reversed"]}
"ui.cursorline" = {modifiers=["reversed"]}
"ui.statusline" = {modifiers=["reversed"]}
"ui.statusline.inactive" = {fg="black", bg="white"}
"ui.virtual" = "indent"
"ui.virtual.ruler" = { bg = "black", fg ="white" }
"ui.cursor.match" = {modifiers=["reversed"]}
"ui.cursor" = {modifiers=["reversed"]}
"ui.debug" = {fg="black"}
"ui.highlight" = { modifiers = ["underlined"] }
"ui.highlight.frameline" = {modifiers=["reversed"]}
"ui.help" = { modifiers=["reversed"] }
"ui.popup" = { modifiers=["reversed"] }
"ui.popup.info" = { modifiers=["reversed"] }
"ui.text.info" = { modifiers=["reversed"] }
"ui.menu" = { bg="black", fg="white" }
"ui.menu.selected" = { bg="white", fg="black" }
"ui.window" = { bg="white" }
"diagnostic" = { modifiers=["reversed"] }
"diagnostic.error" = {modifiers=["bold", "underlined"]}
"diagnostic.warning" = {modifiers=["underlined", "italic"]}
"diagnostic.hint" = {modifiers=["underlined"]}
"diagnostic.unnecessary" = {modifiers = ["dim"]}
"diagnostic.deprecated" = {modifiers = ["crossed_out"]}
"ui.bufferline" = { fg="black", bg="white" }
"ui.bufferline.active" = { fg="black", bg="white" }
[palette]
white = "#ffffff"
black = "#000000"

View file

@ -12,17 +12,17 @@ in
config = mkIf cfg.enable {
programs.tmux = {
enable = true;
terminal = "tmux-256color";
extraConfig = ''
setw -g mode-keys vi
set -g mouse on
set -g set-clipboard external
set -g set-titles on
set -g status on
set -ga terminal-overrides ',*256col*:Tc'
set-option -g status-interval 5
set-option -g automatic-rename on
set-option -g automatic-rename-format '#{b:pane_current_path}'
set -g status-bg "#000000"
set -g status-fg "#ffffff"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"