Add basic tmux config
This commit is contained in:
parent
11d894b83e
commit
84198876b3
3 changed files with 16 additions and 0 deletions
|
@ -126,6 +126,7 @@ node default {
|
||||||
'thefuck',
|
'thefuck',
|
||||||
'thunderbird',
|
'thunderbird',
|
||||||
'tig',
|
'tig',
|
||||||
|
'tmux',
|
||||||
'tor-browser-en',
|
'tor-browser-en',
|
||||||
'ttf-emojione',
|
'ttf-emojione',
|
||||||
'ttf-fira-code',
|
'ttf-fira-code',
|
||||||
|
|
6
modules/shell/files/tmux.conf
Normal file
6
modules/shell/files/tmux.conf
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
set -g mouse on
|
||||||
|
setw -g mode-keys vi
|
||||||
|
set -g history-limit 1000
|
||||||
|
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
|
||||||
|
set-window-option -g mouse on
|
||||||
|
set-window-option -g mode-keys vi
|
|
@ -58,4 +58,13 @@ class shell {
|
||||||
source => 'puppet:///modules/shell/global-environment',
|
source => 'puppet:///modules/shell/global-environment',
|
||||||
path => '/etc/environment'
|
path => '/etc/environment'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
file { 'tmux config':
|
||||||
|
ensure => file,
|
||||||
|
owner => 'jake',
|
||||||
|
group => 'users',
|
||||||
|
mode => '0755',
|
||||||
|
source => 'puppet:///modules/shell/tmux.conf',
|
||||||
|
path => '/home/jake/.tmux.conf'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue