-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·28 lines (25 loc) · 865 Bytes
/
install.sh
File metadata and controls
executable file
·28 lines (25 loc) · 865 Bytes
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
ln -snf `pwd`/ackrc ~/.ackrc
ln -snf `pwd`/agignore ~/.agignore
ln -snf `pwd`/agignore ~/.ignore
ln -snf `pwd`/bash_profile ~/.bash_profile
ln -snf `pwd`/bashrc-linux ~/.bashrc
ln -snf `pwd`/ctags ~/.ctags
ln -snf `pwd`/gemrc ~/.gemrc
ln -snf `pwd`/gitconfig ~/.gitconfig
ln -snf `pwd`/gitignore_global ~/.gitignore_global
ln -snf `pwd`/psqlrc ~/.psqlrc
ln -snf `pwd`/rspec ~/.rspec
ln -snf `pwd`/spacemacs ~/.spacemacs
ln -snf `pwd`/tmux.conf ~/.tmux.conf
ln -snf `pwd`/vim ~/.vim
ln -snf `pwd`/git_template ~/.git_template
ln -snf `pwd`/vimrc ~/.vimrc
ln -snf `pwd`/editorconfig .editorconfig
# neovim
ln -snf ~/.vim ~/.config/nvim
ln -snf ~/.vimrc ~/.config/nvim/init.vim
# vim-plug
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
# install vim plugs
vim +PlugInstall +PlugClean! +qa