PageRenderTime 24ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/Makefile

https://github.com/LubosRemplik/.vim
Makefile | 23 lines | 17 code | 3 blank | 3 comment | 3 complexity | 8c0519d01b2533efef7e33018d43eb6a MD5 | raw file
  1. # Installs extensions and compiles things that need compiling.
  2. #
  3. #
  4. help:
  5. @echo "init - Init .vimrc"
  6. @echo "install - Install plugins."
  7. @echo "update - Update plugins."
  8. init:
  9. ln -sf ~/.vim/vimrc ~/.vimrc
  10. curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
  11. sudo apt-get install -y nodejs silversearcher-ag exuberant-ctags
  12. sudo npm install --global intelephense
  13. sudo npm install --global yarn
  14. sudo npm install --global prettier @prettier/plugin-php
  15. curl -LO https://github.com/BurntSushi/ripgrep/releases/download/12.1.1/ripgrep_12.1.1_amd64.deb && sudo dpkg -i ripgrep_12.1.1_amd64.deb && rm ripgrep_12.1.1_amd64.deb
  16. git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf && ~/.fzf/install
  17. install:
  18. vim +PlugInstall +PlugClean! +qall
  19. update:
  20. vim +PlugUpdate +qall