Add support for manpages in neovim
This commit is contained in:
parent
5b6f653e04
commit
21adb00f7f
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user