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:34 -0700 |
commit | a766cffed614645e228e1c9bfddca8ff0d47ece0 (patch) | |
tree | 7b2d6fa533440bbdb2723e1f85d6663ed8dd87b6 | |
parent | 33d604d849c362d54076aaf79f18f662b9657549 (diff) |
edit init.vim comments
RRethy/nvim-base16 change name to base16-nvim.
I tested markdown treesitter, better but still not good.
-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' |