diff options
-rw-r--r-- | dots/tmux/.config/tmux/tmux.conf | 3 | ||||
-rw-r--r-- | dots_manager/template.py | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dots/tmux/.config/tmux/tmux.conf b/dots/tmux/.config/tmux/tmux.conf index d5bc17c..ec28d4e 100644 --- a/dots/tmux/.config/tmux/tmux.conf +++ b/dots/tmux/.config/tmux/tmux.conf @@ -1,7 +1,6 @@ #-- <keybinds> -- set -g prefix C-s - -set-window-option mode-keys vi +set -g mode-keys vi unbind r bind r source-file ~/.config/tmux/tmux.conf diff --git a/dots_manager/template.py b/dots_manager/template.py index 13aecf7..62571a6 100644 --- a/dots_manager/template.py +++ b/dots_manager/template.py @@ -38,6 +38,7 @@ def render_template_to( return None destination.write_text(rendered) + destination.chmod(template.stat().st_mode) return destination |