Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 904 Bytes

vim-packages.md

File metadata and controls

45 lines (30 loc) · 904 Bytes

Using packages in VIM

Overview

System used

  • Linux Ubuntu 19.10
  • Vim 8

Setup

make directory structure if it doesn't exist

mkdir -p ~/.vim/pack/plugins/start

Steps

  • Clone vim plugin repo to start directory
cd ~/.vim/pack/plugins/start
git clone [email protected]:octol/vim-cpp-enhanced-highlight.git 
  • Build the helpdocs in VIM
:helptags ALL

note this gives error: E152: Cannot open /usr/share/vim/vim81/doc/tags for writing This is normal and can be tested using the more verbose

:100verbose :helptags ALL

Links