diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2024-04-14 20:21:09 -0700 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2024-04-17 04:42:35 -0700 |
commit | 226ba1c0755575c8277a49890c7c7ecc7303fef2 (patch) | |
tree | 525aad91a424360c018064c6afb75e2fed4e4135 /home/xyz/.config/nvim/init.vim | |
parent | 9dc867e5aae8df8b4f95d979b4aba754ebbf9fd4 (diff) |
edit init.vim comments
RRethy/nvim-base16 change name to base16-nvim.
I tested markdown treesitter, better but still not good.
Diffstat (limited to 'home/xyz/.config/nvim/init.vim')
-rw-r--r-- | home/xyz/.config/nvim/init.vim | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/home/xyz/.config/nvim/init.vim b/home/xyz/.config/nvim/init.vim index 9f6f9a7c..8928d4da 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' |