From 57ce900bd86c3df9fa5ede48895a6b6cb26ab713 Mon Sep 17 00:00:00 2001 From: Micah Effiong Date: Sat, 21 Oct 2023 23:48:25 +0100 Subject: [PATCH] added markdown setup for treesitter --- init.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 66aca9bd..7795ee10 100644 --- a/init.lua +++ b/init.lua @@ -315,7 +315,8 @@ vim.keymap.set('n', 'sd', require('telescope.builtin').diagnostics, { de -- See `:help nvim-treesitter` require('nvim-treesitter.configs').setup { -- Add languages to be installed here that you want installed for treesitter - ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vimdoc', 'vim' }, + ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vimdoc', 'vim', 'markdown', + 'markdown_inline' }, -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!) auto_install = false,