diff options
| author | 2023-04-13 14:36:42 -0400 | |
|---|---|---|
| committer | 2023-04-13 14:36:42 -0400 | |
| commit | 4f9c5510e6dd628e8b929bd4a57b7b326076bcbc (patch) | |
| tree | 80a7448a4bbfc11ecd4237967a4e26f39d812416 /dot_config | |
| parent | nvim: improve treesitter (diff) | |
nvim: handle markdown via vim-markdown not TS
Diffstat (limited to 'dot_config')
| -rw-r--r-- | dot_config/nvim/lua/plugins/langs.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dot_config/nvim/lua/plugins/langs.lua b/dot_config/nvim/lua/plugins/langs.lua index d69e550..fd08024 100644 --- a/dot_config/nvim/lua/plugins/langs.lua +++ b/dot_config/nvim/lua/plugins/langs.lua @@ -15,6 +15,12 @@ return { sync_intall = true, highlight = { enable = true, + disable = { + 'markdown', + }, + additional_vim_regex_highlighting = { + 'markdown', + }, }, }, }, @@ -24,6 +30,12 @@ return { 'janet-lang/janet.vim', ft = 'janet', }, + { + 'preservim/vim-markdown', + version = false, + dependencies = {'godlygeek/tabular'}, + ft = 'markdown', + }, -- helpers for lisps { |
