forked from whiterabbit7516/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.ps1
37 lines (33 loc) · 1.62 KB
/
install.ps1
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
##########################################
# powershell
##########################################
install-module psfzf -force
new-item -type dir ~/.config/powershell -force | out-null
ln -fsv $PSScriptRoot/powershell/profile.ps1 ~/.config/powershell/profile.ps1
new-item -type dir ~/.local/dotfiles/powershell -force | out-null
cp -rnv $PSScriptRoot/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 $PSScriptRoot/vim/.vimrc ~/.vimrc
##########################################
# tmux
##########################################
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
ln -fsv $PSScriptRoot/tmux/.tmux.conf ~/.tmux.conf
new-item -type dir ~/.local/dotfiles/tmux -force | out-null
cp -rnv $PSScriptRoot/tmux/local/* ~/.local/dotfiles/tmux
##########################################
# vscode
##########################################
new-item -type dir ~/.config/Code/User -force | out-null
# ln -fsv $PSScriptRoot/vscode/settings.json ~/.config/Code/User/settings.json
# ln -fsv $PSScriptRoot/vscode/keybindings.json ~/.config/Code/User/keybindings.json
copy-item $PSScriptRoot/vscode/settings.json ~/.config/Code/User/settings.json
copy-item $PSScriptRoot/vscode/keybindings.json ~/.config/Code/User/keybindings.json
##########################################
# bash
##########################################
# ln -fsv $PSScriptRoot/bash/bashrc ~/.bashrc
# ln -fsv $PSScriptRoot/bash/bash_profile ~/.bash_profile