From 8171e1dd91fe5ff3a504399682288c95793f341a Mon Sep 17 00:00:00 2001 From: Julian Raufelder Date: Sat, 14 Oct 2023 14:09:44 +0200 Subject: [PATCH] Fix typo --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index ac6689f..33ffc5e 100644 --- a/init.lua +++ b/init.lua @@ -411,7 +411,7 @@ vim.keymap.set('n', 'sfh', 'Telescope find_files hidden=true no_ign vim.defer_fn(function() require('nvim-treesitter.configs').setup { -- Add languages to be installed here that you want installed for treesitter - ensure_installed = { 'lua', 'python', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash', 'css', 'dockerfile', 'html', 'java', 'kotlin', 'json', 'markdown_inline', 'ruby', 'sql', 'toml', 'vue', 'yam' }, + ensure_installed = { 'lua', 'python', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash', 'css', 'dockerfile', 'html', 'java', 'kotlin', 'json', 'markdown_inline', 'ruby', 'sql', 'toml', 'vue', 'yaml' }, -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!) auto_install = false,