summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Mi <tommi@niemi.lol>2023-04-22 20:23:56 +0000
committerGitHub <noreply@github.com>2023-04-22 22:23:56 +0200
commitc5978d7e8c047390ec51a7bba78cdd9180954c71 (patch)
tree85b96326178045975d530505299a97d185f87e9c
parent9ad6acdff121ad344cebeb640b48e6ed4d5a8f58 (diff)
fix: remove help causing error as nonexistent (#23)
-rw-r--r--lua/plugins/example.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/lua/plugins/example.lua b/lua/plugins/example.lua
index 39f342f..ecc9567 100644
--- a/lua/plugins/example.lua
+++ b/lua/plugins/example.lua
@@ -142,7 +142,6 @@ return {
opts = {
ensure_installed = {
"bash",
- "help",
"html",
"javascript",
"json",
@@ -168,8 +167,8 @@ return {
opts = function(_, opts)
-- add tsx and treesitter
vim.list_extend(opts.ensure_installed, {
- "tsx",
- "typescript",
+ "tsx",
+ "typescript",
})
end,
},