plugins: add plugins for CSV and for md links.

Co-Authored-by: iGor milhit <igor@milhit.ch>
kickstart
iGor milhit 2022-10-20 14:58:06 +02:00
parent 37e28c58d1
commit 7c055de06e
Signed by: igor
GPG Key ID: 692D97C3D0228A99
1 changed files with 14 additions and 0 deletions

View File

@ -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 <leader>? :Helptags<CR>
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