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