mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
8 lines
185 B
Bash
8 lines
185 B
Bash
#!/bin/sh
|
|
# shellcheck shell=sh
|
|
|
|
echo "[INFO] Running neovim healthcheck"
|
|
|
|
if command -v nvim > /dev/null 2>&1; then
|
|
nvim --headless +checkhealth +"w nvim-healthcheck.txt" +qall
|
|
fi
|