Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
513
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. diff --git a/bashrc.local b/bashrc.local
  2. index b0d30fb..de58dec 100644
  3. --- a/bashrc.local
  4. +++ b/bashrc.local
  5. @@ -1,5 +1,5 @@
  6. export EMAIL_ADDR=Lakshman_Kumar.Narayanan@alcatel-lucent.com
  7. -alias ls='ls --color -F'
  8. +#alias ls='ls --color -F'
  9. alias grep='egrep --color'
  10. alias gitnp='git --no-pager'
  11. alias npgit='git --no-pager'
  12. diff --git a/tmux.conf b/tmux.conf
  13. index 8087fb6..214cdc7 100644
  14. --- a/tmux.conf
  15. +++ b/tmux.conf
  16. @@ -20,10 +20,10 @@ bind-key b run "bash -ci gotoNofifPane"
  17. set-window-option -g mode-keys vi
  18.  
  19. # start and end selection
  20. -bind-key -t vi-copy 'v' begin-selection
  21. -bind-key -t vi-copy 'y' copy-selection
  22. -bind-key -t vi-copy 'C-v' rectangle-toggle
  23. -bind-key -t vi-copy 'Escape' cancel
  24. +bind-key -Tcopy-mode-vi 'v' send -X begin-selection
  25. +bind-key -Tcopy-mode-vi 'y' send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
  26. +bind-key -Tcopy-mode-vi 'C-v' send -X rectangle-toggle
  27. +bind-key -Tcopy-mode-vi 'Escape' send -X cancel
  28.  
  29. #bind a special attach (s is the regular attach) which will detach other clients
  30. bind-key g choose-tree -b "attach-session -dt '%%'"
  31. @@ -57,7 +57,7 @@ set-window-option -ag word-separators "'"
  32. #set-window-option -g window-status-current-bg colour236
  33. #set-window-option -g window-status-current-attr bright
  34.  
  35. -set-option -g default-shell /bin/zsh
  36. +set-option -g default-command "reattach-to-user-namespace -l zsh"
  37. set-option -g default-terminal "screen-256color"
  38.  
  39. #connecting multiple clients sholdn't force all clients to the least size!
  40. diff --git a/zshrc.local b/zshrc.local
  41. index 2fe1cb4..9c11d04 100644
  42. --- a/zshrc.local
  43. +++ b/zshrc.local
  44. @@ -68,7 +68,7 @@ function cd_dir_widget()
  45. zle -N cd_dir_widget
  46. bindkey '^V' cd_dir_widget
  47.  
  48. -eval $(dircolors ~/software/dircolors-solarized/dircolors.ansi-dark )
  49. +#eval $(dircolors ~/software/dircolors-solarized/dircolors.ansi-dark )
  50.  
  51. source ~/github/zsh-git-prompt/zshrc.sh
  52. [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement