1

Add support for manpages in neovim

This commit is contained in:
Evan Pratten 2023-07-25 11:15:24 -04:00
parent 5b6f653e04
commit 21adb00f7f
2 changed files with 9 additions and 0 deletions

View File

@ -69,6 +69,9 @@ if !exists('g:vscode')
set spelloptions=camel
hi clear SpellCap
hi clear SpellRare
" Disable spellcheck for manpages
autocmd FileType man setlocal nospell
endif
" Disable the gitgutter background

View File

@ -31,6 +31,12 @@ elif type -p nano > /dev/null; then
export EDITOR="nano"
fi
# If we have neovim, use it as the manpage viewer
if type -p nvim > /dev/null; then
export MANPAGER="nvim +Man!"
export MANWIDTH=80
fi
# SDKMAN!
export SDKMAN_DIR="$HOME/.sdkman"
[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh"