23 lines
316 B
Bash
Executable File
23 lines
316 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
|
|
sudo pacman -Sy \
|
|
base-devel \
|
|
prettier \
|
|
yapf \
|
|
autopep8 \
|
|
python-black \
|
|
mypy \
|
|
python-greenlet
|
|
|
|
pip3 install --user pynvim
|
|
|
|
mkdir .{swp,backup,undo}
|
|
|
|
git submodule update --init
|
|
|
|
THISDIR=$PWD
|
|
cd pack/vendor/start/LanguageClient-neovim
|
|
bash install.sh
|
|
cd $THISDIR
|