blob: a0f20a00dd2887c24ee492e13e2d373695518f6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/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
# 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
|