]>
Commit | Line | Data |
---|---|---|
1 | #!/usr/bin/env sh | |
2 | ||
3 | echo "Linking runcoms" | |
4 | ||
5 | # ZSH runcoms | |
6 | ln -fhs .dotfiles/runcoms/zshrc ~/.zshrc | |
7 | ln -fhs .dotfiles/runcoms/zshenv ~/.zshenv | |
8 | ln -fhs .dotfiles/runcoms/zprofile ~/.zprofile | |
9 | ln -fhs .dotfiles/runcoms/zlogout ~/.zlogout | |
10 | ln -fhs .dotfiles/runcoms/zlogin ~/.zlogin | |
11 | ||
12 | # Weechat | |
13 | ln -fhs .dotfiles/weechat ~/.weechat | |
14 | ||
15 | # VIM | |
16 | ln -fhs .dotfiles/vim ~/.vim | |
17 | ln -fhs .dotfiles/vimrc ~/.vimrc | |
18 | ||
19 | # TMUX | |
20 | ln -fhs .dotfiles/tmux.conf ~/.tmux.conf | |
21 | ||
22 | # Nethack | |
23 | ln -fhs .dotfiles/nethackrc ~/.nethackrc | |
24 | ||
25 | # Git | |
26 | ln -fhs .dotfiles/gitconfig ~/.gitconfig | |
27 | ||
28 | # Ctags | |
29 | ln -fhs .dotfiles/ctags.d ~/.ctags.d | |
30 | ||
31 | # Italics setup | |
32 | echo "Setting up terminfo" | |
33 | tic xterm-256color-italic.terminfo |