-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlink.sh
More file actions
21 lines (19 loc) · 739 Bytes
/
Copy pathlink.sh
File metadata and controls
21 lines (19 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
chsh -s /bin/zsh
git submodule update --init --recursive
cd ~
ln -s .dotfiles/.emacs.d .emacs.d
ln -s .dotfiles/.oh-my-zsh .oh-my-zsh
ln -s .dotfiles/.vim .vim
ln -s .dotfiles/.Xmodmap .Xmodmap
ln -s .dotfiles/.Xresources .Xresources
ln -s .dotfiles/.aliases .aliases
ln -s .dotfiles/.dir_colors .dir_colors
ln -s .dotfiles/.tmux.conf .tmux.conf
ln -s .dotfiles/.vimrc .vimrc
ln -s .dotfiles/.xsession .xsession
ln -s .dotfiles/.zshrc .zshrc
sudo ln -s ~/.dotfiles/xorg.conf.d/20-natural-scrolling.conf /usr/share/X11/xorg.conf.d/20-natural-scrolling.conf
sudo ln -s ~/.dotfiles/trackpoint.rules /etc/udev/rules.d/trackpoint.rules
mkdir -p .config/i3 && ln -s ~/.dotfiles/i3_config ~/.config/i3/config
vim +PluginInstall +qall