diff --git a/.vim/.vimrc b/.vim/.vimrc index 207cb74..48855bc 100644 --- a/.vim/.vimrc +++ b/.vim/.vimrc @@ -78,6 +78,8 @@ nnoremap :tabprevious nnoremap :tabnext + + " Plugins set rtp+=~/.vim/bundle/Vundle.vim diff --git a/Makefile b/Makefile index 09a1df7..b3df211 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -all: install +all: bash backup: mv ~/.bashrc ~/.bashrc.bak || true @@ -12,11 +12,15 @@ backup: mv ~/.gitconfig ~/.gitconfig.bak || true mv ~/.gitignore ~/.gitignore.bak || true -install: +bash: ln -s $(PWD)/.subbash ~ || true - ln -s $(PWD)/.subzsh ~ || true ln -s $(PWD)/.bashrc ~ || true + +zsh: + ln -s $(PWD)/.subzsh ~ || true ln -s $(PWD)/.zshrc ~ || true + +tmux: ln -s $(PWD)/.tmux.conf ~ || true vim: @@ -27,9 +31,6 @@ vim: git clone https://github.com/VundleVim/Vundle.vim.git $(PWD)/.vim/bundle/Vundle.vim && \ vim +PluginInstall +qall -clean: - rm -rf .ssh doc etc img README.md - ssh: echo -e "\n" >> ~/.ssh/config && cat .ssh/config >> ~/.ssh/config