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