Skip to content

Instantly share code, notes, and snippets.

View durcheinandr's full-sized avatar

Jochen Schweizer durcheinandr

View GitHub Profile
@durcheinandr
durcheinandr / sidenotes.vim
Created April 17, 2016 15:04
Add Sidenotes to every file. Sidenotes are sidecar files in a custom directory
" let g:snotepath = '/path/to/your/sidenotes/'
" let g:snoteext = 'md'
" defaults for sidenotes-directory and extension
if !exists('g:snotepath')
let g:snotepath = $HOME . '/sidenotes/'
endif
if !exists('g:snoteext')
let g:snoteext ='markdown'