Skip to content

Instantly share code, notes, and snippets.

@vdeemann
Created June 5, 2023 20:57
Show Gist options
  • Save vdeemann/cae42fd6646134309864bdf4ee72de28 to your computer and use it in GitHub Desktop.
Save vdeemann/cae42fd6646134309864bdf4ee72de28 to your computer and use it in GitHub Desktop.
1.) create a .vimrc file if none exists
https://stackoverflow.com/~/10921485
2.) install pathogen
mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
3.) add runtime path manipulation for pathogen into .vimrc file
execute pathogen#infect()
syntax on
filetype plugin indent on
4.) add vimwiki prerequisites to .vimrc file
set nocompatible
filetype plugin on
syntax on
5.) install vimwiki
cd ~/.vim
mkdir bundle
cd bundle
git clone https://github.com/vimwiki/vimwiki.git
6.) Then launch Vim, run :Helptags and then :help vimwiki to verify it was installed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment