From 517052f484d38db01cef53ccca6056a6ef3b70bc Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Fri, 20 Jan 2023 20:22:59 -0800 Subject: [PATCH] s/.tmux.conf.local/.tmux.conf --- macos/{.tmux.conf.local => .tmux.conf} | 2 ++ meta/roles/dotfiles/tasks/main.yml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) rename macos/{.tmux.conf.local => .tmux.conf} (88%) diff --git a/macos/.tmux.conf.local b/macos/.tmux.conf similarity index 88% rename from macos/.tmux.conf.local rename to macos/.tmux.conf index 044f058..49f7727 100644 --- a/macos/.tmux.conf.local +++ b/macos/.tmux.conf @@ -8,3 +8,5 @@ # bind y run "tmux save-buffer - | reattach-to-user-namespace pbcopy" set-option -g default-command "zsh" bind y run "tmux save-buffer - | pbcopy" + +# set-option -g default-shell /opt/homebrew/bin/fish diff --git a/meta/roles/dotfiles/tasks/main.yml b/meta/roles/dotfiles/tasks/main.yml index 308e6c1..62e8161 100644 --- a/meta/roles/dotfiles/tasks/main.yml +++ b/meta/roles/dotfiles/tasks/main.yml @@ -23,5 +23,5 @@ file: src=~/.dotfiles/bin dest=~/bin state=link - name: symlink ~/.tmux.conf.local - file: src=~/.dotfiles/macos/.tmux.conf.local dest=~/.tmux.conf.local state=link + file: src=~/.dotfiles/macos/.tmux.conf dest=~/.tmux.conf.local state=link when: ansible_distribution == "MacOSX"