setupDEB.sh 403 B

1234567891011121314151617181920
  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. # pul sown installer
  9. curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh
  10. # run installer
  11. sh ./installer.sh ~/.cache/dein
  12. git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
  13. ~/.fzf/install