9 lines
244 B
Bash
Executable file
9 lines
244 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
CURDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# 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"
|