aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Bobov <anton@bobov.name>2024-08-21 23:54:39 +0500
committerAnton Bobov <anton@bobov.name>2024-08-21 23:54:39 +0500
commit7e30c3fd357fe5a7776e499b7d63df013d0403ea (patch)
tree22bbff826db8dec47de57c3ada4accfac16d2e5e
parentb7d2a7a1807802ec8385f44651658a9eaa98c141 (diff)
vim: Add vim-man plugin
-rw-r--r--files/.vimrc10
1 files changed, 10 insertions, 0 deletions
diff --git a/files/.vimrc b/files/.vimrc
index e05baeb..b6b79c4 100644
--- a/files/.vimrc
+++ b/files/.vimrc
@@ -99,6 +99,8 @@ Plug 'tpope/vim-dispatch'
Plug 'vim-test/vim-test'
" A Narrow Region Plugin for vim (like Emacs Narrow Region)
Plug 'chrisbra/NrrwRgn'
+" View and grep man pages in vim
+Plug 'vim-utils/vim-man'
"Plug 'https://github.com/terryma/vim-multiple-cursors'
@@ -717,6 +719,14 @@ let g:gutentags_ctags_tagfile = '.tags'
let g:gutentags_project_root = g:ctrlp_root_markers
" }}}
+" vim-man {{{
+
+augroup plugin_vim_man
+ autocmd!
+ au FileType man set nospell
+augroup END
+
+" }}}
" }}}
" Load custom local config {{{