diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-09-21 21:37:30 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-09-21 21:37:30 +0200 |
| commit | 4df35c81432f4ec94f63b0c86de58aec4259006a (patch) | |
| tree | 7d4ad1347acedfe8f94b4add6b491d7984d1d1af /Makefile | |
| parent | c02b5d1c427b4a203eef65e2f05d1e3faa066fbb (diff) | |
| download | dotfiles-4df35c81432f4ec94f63b0c86de58aec4259006a.tar.gz dotfiles-4df35c81432f4ec94f63b0c86de58aec4259006a.tar.bz2 dotfiles-4df35c81432f4ec94f63b0c86de58aec4259006a.zip | |
Dependencies install, zsh syntax highlight
- dependencies Makefile rule to install vim-plug, vim pluggins,
oh-my-zsh, zsh-syntax-highlighting.
- vim keys to move in tab menu completion
- shorter bashrc
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -51,3 +51,16 @@ clean: .PHONY: re re: clean all + +.PHONY: dependencies +dependencies: + @echo "Installing vim-plug (plugin manager)" + curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ + https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim + @echo "Installing vim plugins" + vim -c "PlugInstall" -c "qa" + @echo "Installing oh-my-zsh" + sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" + @echo "Installing zsh-syntax-highlighting" + git clone https://github.com/zsh-users/zsh-syntax-highlighting.git \ + ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting |
