setupDEB.sh 454 B

1234567891011121314151617181920212223
  1. #!/bin/sh
  2. # installing neovim
  3. sudo apt install -y neovim
  4. # needed to pull installer
  5. sudo apt install -y curl
  6. # used for clipboard
  7. sudo apt install -y xsel
  8. # pesky fonts
  9. sudo apt install -y powerline-fonts
  10. # pul sown installer
  11. curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh
  12. # run installer
  13. sh ./installer.sh ~/.cache/dein
  14. git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
  15. ~/.fzf/install