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