diff --git a/README.md b/README.md
new file mode 100644
index 0000000..201b68e
--- /dev/null
+++ b/README.md
@@ -0,0 +1,4 @@
+
+```bash
+git clone https://github.com/simon987/tmux-config /tmp/tmux-conf/ && /tmp/tmux-conf/install.sh
+```
diff --git a/install.sh b/install.sh
new file mode 100755
index 0000000..0cf9ff0
--- /dev/null
+++ b/install.sh
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+
+script_path=`dirname $(realpath $0)`
+
+# Install files
+rm ~/.tmux.conf
+cp ${script_path}/.tmux.conf ~/
+
+# Restart
+tmux kill-server
+
+echo "Installed tmux config"