7 lines
123 B
Text
7 lines
123 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# docs: Browse and create documentation with vim.
|
||
|
|
||
|
DOCS=~/documentation
|
||
|
[ -d $DOCS ] && ${EDITOR:-nvim} "$DOCS"
|