diff options
| author | Thomas Schmucker <ts@its1.de> | 2023-03-24 17:05:45 +0100 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2023-03-24 17:05:45 +0100 |
| commit | 0b6b9b07f35e47d0c556e3240cfa4792f594eff1 (patch) | |
| tree | 3a5a18b37bacea5fa0c6555177a2efa74c07354c /install.sh | |
| download | dotfiles-0b6b9b07f35e47d0c556e3240cfa4792f594eff1.tar.gz dotfiles-0b6b9b07f35e47d0c556e3240cfa4792f594eff1.tar.bz2 dotfiles-0b6b9b07f35e47d0c556e3240cfa4792f594eff1.zip | |
erster Import
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 | |||
