Skip to content

Instantly share code, notes, and snippets.

@MartyLake
Last active September 21, 2024 22:01
Show Gist options
  • Save MartyLake/f6dd46bb479d402b15b32791ababaa28 to your computer and use it in GitHub Desktop.
Save MartyLake/f6dd46bb479d402b15b32791ababaa28 to your computer and use it in GitHub Desktop.
vimwiki table formula integration
set nocompatible
filetype off
let vundleVimPath = "~/.vim/bundle/Vundle.vim"
let vundleVimInstallPluginPath = "$HOME/.vim/bundle"
exe 'set rtp+=' . expand(vundleVimPath)
call vundle#begin(vundleVimInstallPluginPath)
Plugin 'VundleVim/Vundle.vim'
"" End of Vundle package manager preamble
"""""""""""""""""""""""""""""""""""""""""
Plugin 'vimwiki/vimwiki'
" disable table mappings conflicting with vim-table-mode
let g:vimwiki_table_mappings=0
let g:vimwiki_table_auto_fmt=1
" make vimwike tables md, to be compatible with vim-table-mode
let g:table_mode_corner='|'
Plugin 'dhruvasagar/vim-table-mode'
""""""""""""""""""""""""""""""""""""""""
"" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
syntax on " required
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment