diff options
author | Christian Chiarulli <[email protected]> | 2019-02-10 15:17:03 -0500 |
---|---|---|
committer | Christian Chiarulli <[email protected]> | 2019-02-10 15:17:03 -0500 |
commit | b550a87ceca5449a9687f5861c3e7cb6e7b2bd1a (patch) | |
tree | a5799d2d00f242b2cd197728d70a75515521e2e6 /old/setupDEB.sh | |
parent | f7b91819c36603dbbbcf5807200facf1d7367223 (diff) |
began new config
Diffstat (limited to 'old/setupDEB.sh')
-rwxr-xr-x | old/setupDEB.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/old/setupDEB.sh b/old/setupDEB.sh new file mode 100755 index 00000000..11680cba --- /dev/null +++ b/old/setupDEB.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +# installing neovim +sudo apt install -y neovim + +# needed to pull installer +sudo apt install -y curl + +# used for clipboard +sudo apt install -y xsel + +# pesky fonts +sudo apt install -y powerline-fonts + +# pul sown installer +curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh + +# run installer +sh ./installer.sh ~/.cache/dein + +git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf + +~/.fzf/install |