From 04a7eec6d26e543fd2bed464ba5292b71c52f6bd Mon Sep 17 00:00:00 2001 From: abs3nt Date: Fri, 3 Mar 2023 00:44:21 -0800 Subject: [PATCH] updates --- lua/plugins.lua | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index d98f687..0a872fa 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -14,9 +14,12 @@ return { { 'nvim-treesitter/nvim-treesitter', config = function() - require 'nvim-treesitter.configs'.setup { + require 'nvim-treesitter.configs'.setup({ auto_install = true, - } + highlight = { + enable = true, + } + }) end }, @@ -26,10 +29,6 @@ return { ft = { "go", "gomod" }, config = function() vim.g.go_fmt_command = "gofumpt" - vim.g.go_highlight_types = 1 - vim.g.go_highlight_fields = 1 - vim.g.go_highlight_functions = 1 - vim.g.go_highlight_function_calls = 1 vim.g.go_metalinter_command = 'golangci-lint' end },