diff --git a/.config/nvim/lua/my/filetypes.lua b/.config/nvim/lua/my/filetypes.lua index 3bcbacb..91a6492 100644 --- a/.config/nvim/lua/my/filetypes.lua +++ b/.config/nvim/lua/my/filetypes.lua @@ -6,8 +6,9 @@ require'nvim-treesitter.configs'.setup { additional_vim_regex_highlighting = { 'org' } }, ensure_installed = { - 'org', 'html', 'css', 'comment', 'json', 'json5', - 'cpp', 'c', 'lua', 'bash', 'javascript', 'typescript' ,'cmake', 'make', + 'org', 'markdown', 'markdown_inline', 'html', 'css', + 'cpp', 'c', 'lua', 'bash', 'javascript', 'typescript', + 'comment', 'cmake', 'make', 'json', 'json5', }, }