-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added mouse support to tmux for good highlighting with mouse
- Loading branch information
1 parent
8f1e798
commit 24aad0a
Showing
1 changed file
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,13 @@ set -g @plugin 'tmux-plugins/tmux-sensible' | |
# set -g @plugin '[email protected]:user/plugin' | ||
# set -g @plugin '[email protected]:user/plugin' | ||
|
||
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | ||
run '~/.tmux/plugins/tpm/tpm' | ||
# Enable mouse mode | ||
set -g mouse on # that way selection doesn't span across panes | ||
set -s escape-time 0 # else escape takes 1s in neovim | ||
# set -g default-terminal "xterm-256color" | ||
|
||
# Set a default shell | ||
set -g default-shell /bin/zsh | ||
# set -g default-shell /bin/zsh | ||
|
||
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | ||
run '~/.tmux/plugins/tpm/tpm' |