blob: cb375b5ac9d507428f44c360658d6ae6b12877db (
plain) (
blame)
1
2
3
4
5
6
7
8
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"
|