| Filip Pytloun | a20f9e2 | 2016-02-16 13:07:03 +0100 | [diff] [blame^] | 1 | yum -y install curl wget |
| 2 | |||||
| 3 | wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm | ||||
| 4 | rpm -i epel-release-7-5.noarch.rpm | ||||
| 5 | |||||
| 6 | yum -y update | ||||
| 7 | yum -y install tmux vim-enhanced htop byobu cloud-init | ||||
| 8 | |||||
| 9 | # Tmux fixes | ||||
| 10 | cat << 'EOF' >> /etc/tmux.conf | ||||
| 11 | set -g default-terminal "screen-256color" | ||||
| 12 | set -g set-titles on | ||||
| 13 | set -g xterm-keys on | ||||
| 14 | EOF | ||||