diff --git a/init.vim b/init.vim index 2a1abca..b2687b4 100644 --- a/init.vim +++ b/init.vim @@ -5,6 +5,7 @@ Plug 'tpope/vim-sensible' " De Plug 'vim-pandoc/vim-pandoc' " Pandoc support Plug 'vim-pandoc/vim-pandoc-syntax' " Markdown syntax support Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' } " Markdown preview +Plug 'jakewvincent/mkdnflow.nvim' " Create, follow, display links in a directory of md files Plug 'dhruvasagar/vim-table-mode', { 'on': 'TableModeEnable' } " Helper for table in markdown Plug 'junegunn/goyo.vim', { 'on': 'Goyo' } " Distraction free mode for writing Plug 'junegunn/limelight.vim', { 'on': 'Goyo' } " Dime the color of the text that is not being updated @@ -38,6 +39,7 @@ Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } " Fu Plug 'junegunn/fzf.vim' " fzf for vim/neovim Plug 'stsewd/fzf-checkout.vim' " Fuzzy search in git branches Plug 'ryanoasis/vim-devicons' " Add icons to plugins +Plug 'chrisbra/csv.vim' " To diplay and manage CSV files call plug#end() " Format indentation @@ -259,6 +261,18 @@ 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