From 0bf09fb1d3d3862a6d104dbc9c188365dcabf6f1 Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Mon, 10 May 2021 09:02:00 -0700 Subject: [PATCH] neovim: remove headless install --- neovim/postinstall | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/neovim/postinstall b/neovim/postinstall index 96863eb..1afc175 100755 --- a/neovim/postinstall +++ b/neovim/postinstall @@ -4,4 +4,6 @@ set -euo pipefail CURDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -nvim --headless -s "${CURDIR}/pluginstall.vim" +# I wish I could use `--headless` here to avoid screen flashing, but this +# doesn't seem to work if I set that. +nvim -s "${CURDIR}/pluginstall.vim"