1
0
Fork 0

neovim: Convert all config to Lua

I've been using this with only minimal changes for a few weeks now, so
this seems like a good place to checkpoint it.
This commit is contained in:
Jeremy Kaplan 2022-12-30 21:57:24 -08:00
commit 71d8737447
17 changed files with 1045 additions and 491 deletions

View file

@ -4,6 +4,3 @@ set -exuo pipefail
[ -d ~/.virtualenvs/neovim3 ] || python3 -m venv ~/.virtualenvs/neovim3
~/.virtualenvs/neovim3/bin/python -c 'import pynvim' || ~/.virtualenvs/neovim3/bin/pip install pynvim
# https://github.com/junegunn/vim-plug/wiki/tips#install-plugins-on-the-command-line
nvim -es -u ~/.config/nvim/init.vim -i NONE -c "PlugInstall" -c "qa"