8 lines
316 B
Bash
Executable file
8 lines
316 B
Bash
Executable file
#! /usr/bin/env sh
|
|
vim -c PlugInstall -c PlugClean -c qa! # To install plugins for nvim defined in init.vim
|
|
pyenv virtualenv neovim3 # Assumes working pyenv
|
|
pyenv activate neovim3
|
|
pip install -U pip setuptools wheel
|
|
pip install -U pynvim "python-lsp-server[all]" fortls pylsp-mypy python-lsp-black
|
|
pyenv deactivate
|