Add .tmux.conf to list of files to update.
David Blume

David Blume commited on 2020-06-23 13:36:06
Showing 1 changed files, with 2 additions and 2 deletions.

... ...
@@ -3,8 +3,8 @@ set -eu -o pipefail # See: https://sipb.mit.edu/doc/safe-shell/
3 3
 
4 4
 declare -r SCRIPT_NAME=$(basename "$BASH_SOURCE")
5 5
 declare -r backup_dir=$HOME/backup_of_dotfiles_`date "+%Y-%m-%d"`
6
-declare -a dotfiles=(".bashrc" ".bash_profile" ".vimrc" ".editrc"
7
-                     ".gitconfig" ".gitignore" ".inputrc" ".ssh/config")
6
+declare -a dotfiles=(".bashrc" ".bash_profile" ".vimrc" ".editrc" ".gitconfig"
7
+                     ".gitignore" ".inputrc" ".tmux.conf" ".ssh/config")
8 8
 declare -i DRY_RUN=0
9 9
 
10 10
 ## exit the shell (with status 2) after printing the message
11 11