blob: 60f9a71596f309601eda3068a46a955dcbb92d8b (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#!/usr/bin/env sh
echo "Linking runcoms"
# hush login
ln -fhs .dotfiles/hushlogin ~/.hushlogin
# 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
# XDefaults
ln -fhs .dotfiles/XDefaults ~/.XDefaults
# ripgrep
ln -fhs .dotfiles/rgignore ~/.rgignore
# tmuxp
ln -fhs .dotfiles/tmuxp ~/.tmuxp
# config dir
mkdir -p ~/.config
# kitty
ln -fhs ../.dotfiles/config/kitty ~/.config/kitty
# nvim
ln -fhs ../.dotfiles/config/nvim ~/.config/nvim
# config
ln -fhs ../.dotfiles/config/karabiner ~/.config/karabiner
# Italics setup
echo "Setting up terminfo"
tic xterm-256color-italic.terminfo
|