dhruvasagar / vim-table-mode

VIM Table Mode for instant table creation.
2.1k stars 97 forks source link

Conflict with vimwiki #144

Closed ElModdy closed 5 years ago

ElModdy commented 5 years ago

The plugin works fine but when the extension is for example .md, vimwiki overwrites the settings. screen My .vimrc looks like this:

let g:table_mode_corner_corner='+'
let g:table_mode_header_fillchar='='

let g:vimwiki_table_mappings=0
let g:vimwiki_table_auto_fmt=0

I really appreciate any kind of help.

dhruvasagar commented 5 years ago

There's a ftplugin/markdown.vim that adds some settings for table mode to make it work as per gfm spec. If you need to override any of those, you'll need to do so in a after/ftplugin. Kindly refer to #142.

ElModdy commented 5 years ago

Thanks for the reply. Sorry for my ignorance but I don't have any "ftplugin". My plugins are:

Plug 'vimwiki/vimwiki'
Plug 'junegunn/goyo.vim'
Plug 'tpope/vim-surround'
Plug 'kien/ctrlp.vim'
Plug 'vim-airline/vim-airline'
Plug 'will133/vim-dirdiff'
Plug 'mattn/calendar-vim'
Plug 'dhruvasagar/vim-table-mode'
Plug 'potatoesmaster/i3-vim-syntax'
ElModdy commented 5 years ago

Solved