aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/install.sh b/install.sh
new file mode 100755
index 0000000..cfd8da7
--- /dev/null
+++ b/install.sh
@@ -0,0 +1,20 @@
1#!/bin/sh
2
3CONFIG=~/.config
4mkdir -p "$CONFIG"
5
6# tmux
7cp -R tmux "$CONFIG"
8
9# nvim
10cp -R nvim "$CONFIG"
11
12# zsh
13mkdir -p "$CONFIG/zsh"
14
15cp zsh/zshenv ~/.zshenv
16
17cp zsh/zshrc "$CONFIG/zsh/.zshrc"
18cp zsh/aliases "$CONFIG/zsh/aliases"
19cp zsh/prompt "$CONFIG/zsh/prompt"
20