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', 'thefuck',
'thunderbird', 'thunderbird',
'tig', 'tig',
'tmux',
'tor-browser-en', 'tor-browser-en',
'ttf-emojione', 'ttf-emojione',
'ttf-fira-code', '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', 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'
}
} }