From ef1a91b5e55eac2e22c351f0a8618e6831fcb755 Mon Sep 17 00:00:00 2001 From: Edward Litherland-Smith Date: Tue, 9 Aug 2022 10:01:49 +0100 Subject: [PATCH] Ensure comming TS modules installed at startup --- lsp_config.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lsp_config.lua b/lsp_config.lua index 30fc5337..b5d5df41 100644 --- a/lsp_config.lua +++ b/lsp_config.lua @@ -57,6 +57,8 @@ require('lspconfig')['fortls'].setup{ require'nvim-treesitter.configs'.setup { highlight = { + ensure_installed = {"python", "markdown", "lua", "yaml", "bash"}, + auto_install = true, enable = true, additional_vim_regex_highlighting = false, },