summaryrefslogtreecommitdiff
path: root/scripts/sh/cfg
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/sh/cfg')
-rwxr-xr-xscripts/sh/cfg9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/sh/cfg b/scripts/sh/cfg
new file mode 100755
index 0000000..cb375b5
--- /dev/null
+++ b/scripts/sh/cfg
@@ -0,0 +1,9 @@
+#!/bin/sh
+# Bring up configuration files to edit them.
+# TODO: add Git into this.
+
+[ -z "$FUZZY" ] && echo "FUZZY not set" && exit
+
+file="$(find "$NEODOT/cfg" -type f | $FUZZY)"
+[ -z "$file" ] && exit 0
+nvim "$file"