Compare commits

..

2 commits

Author SHA1 Message Date
Kevin MacMartin
9c6461b124 Add note about python 2024-08-18 23:48:46 -04:00
Kevin MacMartin
1bd7ee194b Disable MatchTagAlways if python isn't available 2024-08-18 23:47:56 -04:00
2 changed files with 6 additions and 0 deletions

View file

@ -55,6 +55,11 @@ if !g:enablecompletion
call add(g:pathogen_disabled, "vim-snippets")
endif
"don't load MatchTagAlways if python isn't available
if !has('python3')
call add(g:pathogen_disabled, 'MatchTagAlways')
endif
"use pathogen to load plugins that haven't been disabled
runtime bundle/vim-pathogen/autoload/pathogen.vim

View file

@ -14,6 +14,7 @@ A theme, config and collection of plugins for Neovim
* **Powerline Fonts**: Required to enable the fancier looking status line
* **Universal CTags**: Required by _vim-gutentags_ and _vista_, and optional for _nvim-cmp_
* **Compilers, Linters and Runtimes**: The _ale_ plugin can use compilers, linters and runtimes to provide real-time syntax checking
* **Python**: Required to enable the _MatchTagAlways_ plugin
## Distribution Features