Nvim: add json schema store

Allows automatically fetching schemas in json files without specifying
schema
This commit is contained in:
Marko Korhonen 2025-03-20 23:34:54 -05:00
parent a7d3c0a6ee
commit ce475402bc
2 changed files with 25 additions and 2 deletions

9
scripts/fhackeditor Executable file
View file

@ -0,0 +1,9 @@
#!/bin/sh
# Script to launch a graphical editor if in graphical mode,
# terminal editor otherwise
if [ -n "$DISPLAY" ] || [ -n "$WAYLAND_DISPLAY" ]; then
echo "Running in graphical mode"
else
echo "Running in TTY mode"
fi