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