-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetupscript.sh
More file actions
26 lines (20 loc) · 829 Bytes
/
Copy pathsetupscript.sh
File metadata and controls
26 lines (20 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
# requirements for configs. Run this in bash to install prerequisites
sudo apt update
sudo apt install git -y
sudo apt install ranger -y
sudo apt install fim -y
sudo apt install python3 -y
sudo apt install python3-pip -y
sudo apt install fuse libfuse2 ack-grep -y
sudo apt install liballegro4-dev -y
pip3 install --upgrade pip
pip3 install --user pynvim
mkdir -p ~/.vim/pack/completor/start
git clone https://github.com/maralla/completor.vim.git ~/.vim/pack/completor/start
pack install ~/.vim/pack/completor/start/maralla/completor.vim
#git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
vim +PlugInstall +qall
vim +BundleInstall +qall
vim +GoInstallBinaries +qall