summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home/xyz/.config/nvim/init.vim8
1 files changed, 5 insertions, 3 deletions
diff --git a/home/xyz/.config/nvim/init.vim b/home/xyz/.config/nvim/init.vim
index 31fe2a44..d6d4aa87 100644
--- a/home/xyz/.config/nvim/init.vim
+++ b/home/xyz/.config/nvim/init.vim
@@ -11,10 +11,12 @@ call plug#begin()
Plug 'glacambre/firenvim', { 'do': { _ -> firenvim#install(0) } }
" tinted-theming/base16-vim has low contrast on fold title make it unreadable, but I customized it easily
" chriskempson/base16-vim doesn't do bold/italic for markdown syntax, and not maintained
-" RRethy/nvim-base16 does not highlight markdown codeblocks
-" tinted-theming/base16-vim and RRethy/nvim-base16 seem both work, both support tree-sitter
+" RRethy/base16-nvim does not highlight markdown codeblocks
+" tinted-theming/base16-vim and RRethy/base16-nvim seem both work, both support tree-sitter
Plug 'tinted-theming/base16-vim'
-" nvim-treesitter does not support markdown right now, so wait
+" nvim-treesitter seems support markdown highlight now, run `:TSEnable highlight`, more see vc notes
+" but very slow when editing large markdown files so I sitll don't enable it, maybe related:
+" https://github.com/nvim-treesitter/nvim-treesitter/issues/2206
"Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " We recommend updating the parsers on update
" use latest vim-markdown
Plug 'tpope/vim-markdown'