| 1234567891011121314151617181920212223 | #!/bin/sh# installing neovimsudo apt install -y neovim# needed to pull installersudo apt install -y curl# used for clipboardsudo apt install -y xsel# pesky fontssudo apt install -y powerline-fonts# pul sown installercurl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh# run installersh ./installer.sh ~/.cache/deingit clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf~/.fzf/install
 |