diff --git a/init.vim b/init.vim index b2687b4..083a120 100644 --- a/init.vim +++ b/init.vim @@ -261,18 +261,6 @@ nnoremap ? :Helptags autocmd! User GoyoEnter Limelight autocmd! User GoyoLeave Limelight! -" ######################################### -" ######################################### -" mkdnflow configuration -lua << EOF -require('mkdnflow').setup({ - -- Config goes here; leave blank for defaults - links = { - conceal = true - } -}) -EOF - " Syntax coloration and color theme syntax enable set background=light @@ -281,3 +269,21 @@ colorscheme edge " Set the Semantic Menu highlight group hi CocMenuSel ctermbg=252 + +" ######################################### +" ######################################### +" mkdnflow configuration +lua << EOF +require('mkdnflow').setup({ + -- Config goes here; leave blank for defaults + links = { + conceal = true + }, + modules = { + folds = false, + lists = false, + tables = false + -- TODO: evaluate if it could replace vim-table + } +}) +EOF