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/dockerfile.lua | |
parent | 3d6e79fa91e411d04076787e89a4584f62f1fd27 (diff) | |
download | config-d38e3d5ea7d080ad6ce285b8dffd70623a1566bb.tar.gz |
remove all references to treesitter
Diffstat (limited to 'lua/plugins/lang/dockerfile.lua')
-rw-r--r-- | lua/plugins/lang/dockerfile.lua | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lua/plugins/lang/dockerfile.lua b/lua/plugins/lang/dockerfile.lua index 9f85765..5140cdd 100644 --- a/lua/plugins/lang/dockerfile.lua +++ b/lua/plugins/lang/dockerfile.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, { "dockerfile" }) - end - end, - }, - - { "jose-elias-alvarez/null-ls.nvim", opts = function(_, opts) if type(opts) == "table" then |