aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--alacritty.yml20
-rw-r--r--tmux.conf23
3 files changed, 24 insertions, 22 deletions
diff --git a/README.md b/README.md
index fcda806..286bcfd 100644
--- a/README.md
+++ b/README.md
@@ -10,8 +10,7 @@ Then create symbolic links to actual config files.
10 10
11```sh 11```sh
12ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh 12ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh
13ln -s ~/.dotfiles/emacs.el ~/.config/emacs/init.el
14ln -s ~/.dotfiles/helix.toml ~/.config/helix/config.toml 13ln -s ~/.dotfiles/helix.toml ~/.config/helix/config.toml
15ln -s ~/.dotfiles/alacritty.yml ~/.alacritty.yml 14ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
16ln -s ~/.dotfiles/vimrc ~/.vimrc 15ln -s ~/.dotfiles/vimrc ~/.vimrc
17``` 16```
diff --git a/alacritty.yml b/alacritty.yml
deleted file mode 100644
index 0710cb4..0000000
--- a/alacritty.yml
+++ /dev/null
@@ -1,20 +0,0 @@
1env:
2 TERM: xterm-256color
3
4window:
5 dimensions:
6 columns: 130
7 lines: 60
8
9font:
10 size: 14
11 normal:
12 family: Berkeley Mono
13 bold:
14 family: Berkeley Mono
15 italic:
16 family: Berkeley Mono
17
18colors:
19 primary:
20 background: "#161616"
diff --git a/tmux.conf b/tmux.conf
new file mode 100644
index 0000000..0213742
--- /dev/null
+++ b/tmux.conf
@@ -0,0 +1,23 @@
1# Set window titles
2set-window-option -g automatic-rename on
3set-option -g set-titles on
4
5# Leader key
6set -g prefix M-x
7
8# Send Ctrl+a to applications by pressing it twice
9bind M-x send-prefix
10
11# Start windows number @1 Instead of @0
12set -g base-index 1
13set-window-option -g pane-base-index 1
14
15# Renumber windows when closing
16set -g renumber-windows on
17
18# Statusbar: purple bg and white fg.
19set -g status-bg '#480b8e'
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]"
22set -g pane-active-border fg=#777777
23set -g pane-border-style fg=#222222