Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Single change to tmux/tmux.conf file at the end to source #12

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Single change to tmux/tmux.conf file at the end to source #12

wants to merge 2 commits into from

Commits on Jun 28, 2018

  1. Single change to tmux/tmux.conf file at the end to source

    `$HOME/.tmux.conf.local` to allow for local modifications to be made
    without having to modify the base code.
    
    The `install.sh` file will create an empty `$HOME/.tmux.conf.local` file
    if it doesn't already exist.
    
    Updated the readme to include a note about putting local changes into
    the appropriate file
    
    On branch initial-changes
    
    -  Changes to be committed:
       -	modified:   install.sh
       -	modified:   readme.md
       -	modified:   tmux/tmux.conf
       -	new file:   tmux/tmux.conf.local
    flakrat committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    bf9ae31 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2018

  1. Changed install.sh script to copy tmux.conf to ~/.tmux.conf instead of

    creating a symlink. I don't want my develpment version being used for
    production.
    
    Had to create a copy of the following from tmux.conf to tmux.conf.local
    because it was somehow getting overwritten when loading my local config
    
    bind -r C-[ previous-window
    bind -r C-] next-window
    bind -r [ select-pane -t :.-
    bind -r ] select-pane -t :.+
    bind -r Tab last-window   # cycle thru MRU tabs
    bind -r C-o swap-pane -D
    
    On branch initial-changes
    
    - Changes to be committed:
      -     modified:   install.sh
      -     modified:   tmux/tmux.conf.local
    flakrat committed Jul 13, 2018
    Configuration menu
    Copy the full SHA
    82365aa View commit details
    Browse the repository at this point in the history