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 },