From dac5006c19019688c8d2e8bf0320b061911564e4 Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Thu, 17 Feb 2022 17:51:06 +0100 Subject: [PATCH] tmux status bar + nvim msgarea --- .config/gitmux/gitmux.yaml | 8 ++++---- .config/nvim/lua/plugins/zenbones.lua | 5 +++-- .tmux.conf | 6 +++--- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.config/gitmux/gitmux.yaml b/.config/gitmux/gitmux.yaml index dcf9633..734902d 100644 --- a/.config/gitmux/gitmux.yaml +++ b/.config/gitmux/gitmux.yaml @@ -13,14 +13,14 @@ tmux: styles: clear: '#[fg=default]' state: '#[bg=red,fg=white]' - branch: '#[fg=#9ccc65,bg=#2E7D32] ' + branch: '#[fg=#9ccc65,bg=#1B5E20] ' remote: '#[fg=cyan]' staged: '#[fg=green]' conflict: '#[fg=red]' - modified: '#[fg=#fdd835,bg=#2E7D32]' - untracked: '#[fg=#ff7043,bg=#2E7D32]' + modified: '#[fg=#fdd835,bg=#1B5E20]' + untracked: '#[fg=#ff7043,bg=#1B5E20]' stashed: '#[fg=#ffcdd2]' - clean: '#[fg=#4caf50,bg=#2E7D32]' + clean: '#[fg=#4caf50,bg=#1B5E20]' layout: [branch, divergence, ' ', flags, '#[fg=#212121]▕'] options: branch_max_len: 0 diff --git a/.config/nvim/lua/plugins/zenbones.lua b/.config/nvim/lua/plugins/zenbones.lua index 20fb158..1d3a977 100644 --- a/.config/nvim/lua/plugins/zenbones.lua +++ b/.config/nvim/lua/plugins/zenbones.lua @@ -12,8 +12,9 @@ local base = require "zenbones" -- Create some specs local specs = lush.parse(function() return { - CursorLine { bg = "#f0f5fa" }, - CursorLineNr { fg = "#607D8B", bg="#f0f5fa" }, + CursorLine { bg = "#f5f5f0" }, + CursorLineNr { fg = "#BCAAA4", bg="#f5f5f0" }, + MsgArea { fg = "#A1887F", bg="#f1f1f1" }, String { fg = "#33691E", gui = "italic" }, Comment { fg = "#114499", gui = "bold,italic" }, LineNr { fg = "#CFD8DC", gui = "bold,italic" }, diff --git a/.tmux.conf b/.tmux.conf index 47f6a44..406f9c5 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -58,11 +58,11 @@ bind-key -n C-\\ copy-mode \; send -X search-backward " % "\; send -X search-aga setw -g window-status-format "" setw -g window-status-current-format "" setw -g window-status-separator "" -set -g status-style "bg=#f0f0f0,fg=#000000" +set -g status-style "bg=#313131,fg=#919191" set -g status-left-length 0 set -g status-right-length 0 -set -g status-left '#{?#{==:#I,1},#[bg=#99aabb]  #[bg=#ccddee]#[fg=#445566] #T #[fg=#ccddee]#[bg=#f0f0f0]🭬,#[bg=#cccccc,fg=#ffffff] #I#[fg=#fcfcfc]▕#[bg=#f0f0f0,fg=#777777] #{=|145|…:pane_current_path}}' -set -g status-right '#{?#{==:#I,1},,#[fg=#07f7f7]#{@starship}#[fg=#fcfcfc]▕#[fg=#f7f7f7]#(~/go/bin/gitmux -cfg ~/.config/gitmux/gitmux.yaml "#{pane_current_path}")}#[bg=#cccccc,fg=#ffffff] #(date +%%H:%%M) ' +set -g status-left '#{?#{==:#I,1},#[bg=#515151]#[fg=#a1a1a1]  #[bg=#515151]#[fg=#d1d1d1] #T #[fg=#515151]#[bg=#313131]🭬,#[bg=#515151,fg=#c1c1c1] #I#[fg=#313131]▕#[bg=#313131,fg=#cccccc] #{=|145|…:pane_current_path}}' +set -g status-right '#{?#{==:#I,1},,#[fg=#07f7f7]#{@starship}#[fg=#313131]▕#[fg=#f7f7f7]#(~/go/bin/gitmux -cfg ~/.config/gitmux/gitmux.yaml "#{pane_current_path}")}#[bg=#4e342e fg=#e0a74d] #(date +%%H:%%M) ' set -g set-titles on set -g set-titles-string "#H - #T"