install 933 B

1234567891011121314151617181920212223
  1. #!/usr/bin/env sh
  2. git submodule init
  3. (cd tintin && git fetch --all --prune)
  4. git submodule update --remote
  5. (cd tintin/src && ./configure && make)
  6. cp tintin/src/tt++ bin/ || exit
  7. mkdir -p .local/share/nvim/site/autoload/
  8. curl https://mirror.ghproxy.com/https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim > .local/share/nvim/site/autoload/plug.vim
  9. mkdir -p .local/share/nvim/plugged
  10. cd .local/share/nvim/plugged
  11. git clone --depth 1 https://mirror.ghproxy.com/https://github.com/dzpao/vim-mbs.git
  12. git clone --depth 1 https://mirror.ghproxy.com/https://github.com/morhetz/gruvbox.git
  13. git clone --depth 1 https://mirror.ghproxy.com/https://github.com/yegappan/mru.git
  14. git clone --depth 1 https://mirror.ghproxy.com/https://github.com/jlanzarotta/BufExplorer.git
  15. git clone --depth 1 https://mirror.ghproxy.com/https://github.com/mhinz/vim-startify.git
  16. mkdir -p .config/nvim
  17. ln -s ../../init.vim .config/nvim/init.vim