diff options
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 20 |
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 | |||
| 3 | CONFIG=~/.config | ||
| 4 | mkdir -p "$CONFIG" | ||
| 5 | |||
| 6 | # tmux | ||
| 7 | cp -R tmux "$CONFIG" | ||
| 8 | |||
| 9 | # nvim | ||
| 10 | cp -R nvim "$CONFIG" | ||
| 11 | |||
| 12 | # zsh | ||
| 13 | mkdir -p "$CONFIG/zsh" | ||
| 14 | |||
| 15 | cp zsh/zshenv ~/.zshenv | ||
| 16 | |||
| 17 | cp zsh/zshrc "$CONFIG/zsh/.zshrc" | ||
| 18 | cp zsh/aliases "$CONFIG/zsh/aliases" | ||
| 19 | cp zsh/prompt "$CONFIG/zsh/prompt" | ||
| 20 | |||
