summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Patti <feoh@feoh.org>2023-04-07 13:11:33 -0400
committerGitHub <noreply@github.com>2023-04-07 13:11:33 -0400
commite1e5c393d3206a03df64a03a925a051182a69668 (patch)
tree1117eef9e6dd448cf32a576d32f0c65823f5d2ca
parentcc41a06a4c099ce47667316d295893fc288a81b4 (diff)
downloaddots-e1e5c393d3206a03df64a03a925a051182a69668.tar.gz
help treesitter module has been renamed to vimdoc in master (#248)
-rw-r--r--nvim/init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua
index b4a7881..7ee7cee 100644
--- a/nvim/init.lua
+++ b/nvim/init.lua
@@ -293,7 +293,7 @@ vim.keymap.set('n', '<leader>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', 'help', 'vim' },
+ ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vimdoc', 'vim' },
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
auto_install = false,