-
Notifications
You must be signed in to change notification settings - Fork 3
/
install.sh
executable file
·36 lines (32 loc) · 1.37 KB
/
install.sh
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
##########################################
# powershell
##########################################
mkdir -p ~/.config/powershell
ln -fsv $PWD/powershell/profile.ps1 ~/.config/powershell/profile.ps1
mkdir -p ~/.local/dotfiles/powershell
cp -rnv $PWD/powershell/local/* ~/.local/dotfiles/powershell
##########################################
# vim
##########################################
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
ln -fsv $PWD/vim/.vimrc ~/.vimrc
##########################################
# tmux
##########################################
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
ln -fsv $PWD/tmux/.tmux.conf ~/.tmux.conf
mkdir -p ~/.local/dotfiles/tmux
cp -rnv $PWD/tmux/local/* ~/.local/dotfiles/tmux
##########################################
# vscode
##########################################
mkdir -p ~/.config/Code/User
# ln -fsv $PWD/vscode/settings.json ~/.config/Code/User/settings.json
# ln -fsv $PWD/vscode/keybindings.json ~/.config/Code/User/keybindings.json
cp $PWD/vscode/settings.json ~/.config/Code/User/settings.json
cp $PWD/vscode/keybindings.json ~/.config/Code/User/keybindings.json
##########################################
# bash
##########################################
# ln -fsv $PWD/bash/bashrc ~/.bashrc
# ln -fsv $PWD/bash/bash_profile ~/.bash_profile