tmux/file
This commit is contained in:
parent
48a9f2c458
commit
08aed79ee6
1 changed files with 4 additions and 2 deletions
|
@ -3,11 +3,13 @@
|
||||||
# ╰──────┴───────╯
|
# ╰──────┴───────╯
|
||||||
|
|
||||||
rwx_tmux_setup() {
|
rwx_tmux_setup() {
|
||||||
rwx_file_write "${HOME}/.tmux.conf" "\
|
local file
|
||||||
|
file="${HOME}/.tmux.conf"
|
||||||
|
rwx_file_write "${file}" "\
|
||||||
# display duration
|
# display duration
|
||||||
set -g display-time 1536
|
set -g display-time 1536
|
||||||
# reload configuration
|
# reload configuration
|
||||||
bind r source-file ~/.tmux.conf \\; display '↑ .tmux.conf'
|
bind r source-file ${file} \\; display 'Source: ${file}'
|
||||||
# toggle mouse
|
# toggle mouse
|
||||||
bind t set -g mouse \\; display 'Mouse: #{mouse}'
|
bind t set -g mouse \\; display 'Mouse: #{mouse}'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue