nixos/install.sh

8 lines
316 B
Bash
Raw Normal View History

#! /usr/bin/env sh
2022-08-19 08:42:15 +01:00
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