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