aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alacritty.yml2
-rwxr-xr-xshenanigans.sh2
-rw-r--r--tmux.conf8
3 files changed, 8 insertions, 4 deletions
diff --git a/alacritty.yml b/alacritty.yml
index fbd9f4a..5340f2d 100644
--- a/alacritty.yml
+++ b/alacritty.yml
@@ -17,4 +17,4 @@ font:
17 17
18colors: 18colors:
19 primary: 19 primary:
20 background: "#161616" 20 background: "#151515"
diff --git a/shenanigans.sh b/shenanigans.sh
index 69ca6c6..17f49cc 100755
--- a/shenanigans.sh
+++ b/shenanigans.sh
@@ -48,6 +48,8 @@ alias d='cd ~/Downloads'
48# Additional path settings. 48# Additional path settings.
49 49
50export PATH=$HOME/.local/bin:$PATH 50export PATH=$HOME/.local/bin:$PATH
51export PATH=$HOME/go/bin:$PATH
52export PATH=$PATH:/usr/local/go/bin
51 53
52# History and search. Stolen from J. 54# History and search. Stolen from J.
53 55
diff --git a/tmux.conf b/tmux.conf
index 8af4b84..23c8d9b 100644
--- a/tmux.conf
+++ b/tmux.conf
@@ -18,9 +18,11 @@ set -g renumber-windows on
18# Statusbar: purple bg and white fg. 18# Statusbar: purple bg and white fg.
19set -g status-bg '#480b8e' 19set -g status-bg '#480b8e'
20set -g status-fg '#ffffff' 20set -g status-fg '#ffffff'
21set -g window-status-current-format "#[fg=#ffffff]#[bg=#111111]#[fg=#ffffff]#[bg=#111111] #I:#W #[fg=#ffffff]#[bg=#111111]" 21
22set -g pane-active-border fg=#777777 22# Set inactive/active window styles.
23set -g pane-border-style fg=#222222 23set -g window-status-current-format "#[fg=#ffffff]#[bg=#151515]#[fg=#ffffff]#[bg=#151515] #I:#W #[fg=#ffffff]#[bg=#151515]"
24set -g window-style 'bg=#222222'
25set -g window-active-style 'bg=#151515'
24 26
25# Other settings 27# Other settings
26set-option -sg escape-time 10 28set-option -sg escape-time 10