diff options
author | Christian Segundo | 2025-01-17 23:08:34 +0100 |
---|---|---|
committer | Christian Segundo | 2025-01-17 23:08:34 +0100 |
commit | d38e3d5ea7d080ad6ce285b8dffd70623a1566bb (patch) | |
tree | 7018c2ab6bab49ab35d4d669a95f03bc38422684 /lua/plugins/lang/json.lua | |
parent | 3d6e79fa91e411d04076787e89a4584f62f1fd27 (diff) | |
download | config-d38e3d5ea7d080ad6ce285b8dffd70623a1566bb.tar.gz |
remove all references to treesitter
Diffstat (limited to 'lua/plugins/lang/json.lua')
-rw-r--r-- | lua/plugins/lang/json.lua | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lua/plugins/lang/json.lua b/lua/plugins/lang/json.lua index bdecb7f..891451a 100644 --- a/lua/plugins/lang/json.lua +++ b/lua/plugins/lang/json.lua @@ -1,15 +1,5 @@ return { { - "nvim-treesitter/nvim-treesitter", - opts = function(_, opts) - if type(opts) == "table" then - opts.ensure_installed = opts.ensure_installed or {} - vim.list_extend(opts.ensure_installed, { "json" }) - end - end, - }, - - { "neovim/nvim-lspconfig", opts = function(_, opts) if type(opts) == "table" then |