6 lines
96 B
Bash
Executable file
6 lines
96 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
if [ -n "$(command -v "nvim")" ]; then
|
|
export MANPAGER='nvim +Man!'
|
|
fi
|
|
|