From e812cdee4cacfde6e4ff0b008ffb08f22f3d1dff Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Thu, 28 Nov 2024 18:39:03 +0100 Subject: [PATCH] Add treesitter --- lua/plugins/init.lua | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index 26bbdc8..4282a9c 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -49,9 +49,9 @@ return { suggestion_color = "#ffffff", cterm = 244, }, - log_level = "info", -- set to "off" to disable logging completely + log_level = "info", -- set to "off" to disable logging completely disable_inline_completion = false, -- disables inline completion for use with cmp - disable_keymaps = false, -- disables built in keymaps for more manual control + disable_keymaps = false, -- disables built in keymaps for more manual control condition = function() return false end, -- condition to check for stopping supermaven, `true` means to stop supermaven when the condition is true. @@ -59,13 +59,13 @@ return { end, }, - -- { - -- "nvim-treesitter/nvim-treesitter", - -- opts = { - -- ensure_installed = { - -- "vim", "lua", "vimdoc", - -- "html", "css" - -- }, - -- }, - -- }, + { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { + "vim", "lua", "vimdoc", + "html", "css" + }, + }, + }, }