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