Update to alacritty and tmux
| Author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-04-21 06:55:35 +0200 |
| Committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-04-21 06:55:35 +0200 |
| Commit | 535d1a9c7e11610171dd52a0cc3aa34e12592d28 (patch) |
|
-rw-r--r-- |
alacritty.yml | 2 | |
-rwxr-xr-x |
shenanigans.sh | 2 | |
-rw-r--r-- |
tmux.conf | 8 |
3 files changed, 8 insertions, 4 deletions
| diff --git a/alacritty.yml b/alacritty.yml | |||
| ... | |||
| 17 | 17 | ||
| 18 | colors: |
18 | colors: |
| 19 | primary: |
19 | primary: |
| 20 | background: "#161616" |
20 | background: "#151515" |
| diff --git a/shenanigans.sh b/shenanigans.sh | |||
| ... | |||
| 48 | # Additional path settings. |
48 | # Additional path settings. |
| 49 | 49 | ||
| 50 | export PATH=$HOME/.local/bin:$PATH |
50 | export PATH=$HOME/.local/bin:$PATH |
| 51 | export PATH=$HOME/go/bin:$PATH |
||
| 52 | export 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 | |||
| ... | |||
| 18 | # Statusbar: purple bg and white fg. |
18 | # Statusbar: purple bg and white fg. |
| 19 | set -g status-bg '#480b8e' |
19 | set -g status-bg '#480b8e' |
| 20 | set -g status-fg '#ffffff' |
20 | set -g status-fg '#ffffff' |
| 21 | set -g window-status-current-format "#[fg=#ffffff]#[bg=#111111]#[fg=#ffffff]#[bg=#111111] #I:#W #[fg=#ffffff]#[bg=#111111]" |
21 | |
| 22 | set -g pane-active-border fg=#777777 |
22 | # Set inactive/active window styles. |
| 23 | set -g pane-border-style fg=#222222 |
23 | set -g window-status-current-format "#[fg=#ffffff]#[bg=#151515]#[fg=#ffffff]#[bg=#151515] #I:#W #[fg=#ffffff]#[bg=#151515]" |
| 24 | set -g window-style 'bg=#222222' |
||
| 25 | set -g window-active-style 'bg=#151515' |
||
| 24 | 26 | ||
| 25 | # Other settings |
27 | # Other settings |
| 26 | set-option -sg escape-time 10 |
28 | set-option -sg escape-time 10 |
| ... | |||