Add basic tmux config

This commit is contained in:
Jake Howard 2018-08-14 08:38:26 +01:00
parent 11d894b83e
commit 84198876b3
Signed by: jake
GPG Key ID: 57AFB45680EDD477
3 changed files with 16 additions and 0 deletions

View File

@ -126,6 +126,7 @@ node default {
'thefuck',
'thunderbird',
'tig',
'tmux',
'tor-browser-en',
'ttf-emojione',
'ttf-fira-code',

View 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

View File

@ -58,4 +58,13 @@ class shell {
source => 'puppet:///modules/shell/global-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'
}
}