Updated a bunch of files

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2024-06-16 02:49:33 +0200
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2024-06-16 02:49:33 +0200
Commit 6c80d1954a131ed2a23d09bc384a8dffcfb67336 (patch)
-rwxr-xr-x shenanigans.sh 3
-rw-r--r-- tmux.conf 6
2 files changed, 5 insertions, 4 deletions
diff --git a/shenanigans.sh b/shenanigans.sh
1
# Software list.
1
# Software list.
2
# cifs-utils tree s3cmd xclip mc gnupg ripgrep jq xmlstarlet fzf htop nvtop newsboat tmux
2
# cifs-utils tree s3cmd xclip mc gnupg ripgrep jq xmlstarlet fzf htop nvtop newsboat tmux ctags
3
  
3
  
4
# Magical environment variables.
4
# Magical environment variables.
5
  
5
  
...
37
alias gg='lazygit'
37
alias gg='lazygit'
38
alias tmux='tmux -u'
38
alias tmux='tmux -u'
39
alias server='python3 -m http.server 6969'
39
alias server='python3 -m http.server 6969'
  
40
alias nvim='nvim -u ~/.vimrc'
40
  
41
  
41
# Custom folder jump commands.
42
# Custom folder jump commands.
42
  
43
  
...
diff --git a/tmux.conf b/tmux.conf
...
3
set-option -g set-titles on
3
set-option -g set-titles on
4
  
4
  
5
# Leader key
5
# Leader key
6
set -g prefix C-x
6
set -g prefix M-x
7
  
7
  
8
# Send Ctrl+x to applications by pressing it twice
8
# Send M+x to applications by pressing it twice
9
bind C-x send-prefix
9
bind M-x send-prefix
10
  
10
  
11
# Start windows number @1 Instead of @0
11
# Start windows number @1 Instead of @0
12
set -g base-index 1
12
set -g base-index 1
...