plugins: add plugins for CSV and for md links.
Co-Authored-by: iGor milhit <igor@milhit.ch>main
parent
37e28c58d1
commit
7c055de06e
14
init.vim
14
init.vim
|
@ -5,6 +5,7 @@ Plug 'tpope/vim-sensible' " De
|
||||||
Plug 'vim-pandoc/vim-pandoc' " Pandoc support
|
Plug 'vim-pandoc/vim-pandoc' " Pandoc support
|
||||||
Plug 'vim-pandoc/vim-pandoc-syntax' " Markdown syntax support
|
Plug 'vim-pandoc/vim-pandoc-syntax' " Markdown syntax support
|
||||||
Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' } " Markdown preview
|
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 'dhruvasagar/vim-table-mode', { 'on': 'TableModeEnable' } " Helper for table in markdown
|
||||||
Plug 'junegunn/goyo.vim', { 'on': 'Goyo' } " Distraction free mode for writing
|
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
|
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 'junegunn/fzf.vim' " fzf for vim/neovim
|
||||||
Plug 'stsewd/fzf-checkout.vim' " Fuzzy search in git branches
|
Plug 'stsewd/fzf-checkout.vim' " Fuzzy search in git branches
|
||||||
Plug 'ryanoasis/vim-devicons' " Add icons to plugins
|
Plug 'ryanoasis/vim-devicons' " Add icons to plugins
|
||||||
|
Plug 'chrisbra/csv.vim' " To diplay and manage CSV files
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" Format indentation
|
" Format indentation
|
||||||
|
@ -259,6 +261,18 @@ nnoremap <leader>? :Helptags<CR>
|
||||||
autocmd! User GoyoEnter Limelight
|
autocmd! User GoyoEnter Limelight
|
||||||
autocmd! User GoyoLeave 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 coloration and color theme
|
||||||
syntax enable
|
syntax enable
|
||||||
set background=light
|
set background=light
|
||||||
|
|
Loading…
Reference in New Issue