]> git.localhorst.tv Git - nvim-config.git/commitdiff
fix: remove help causing error as nonexistent (#23)
authorTom Mi <tommi@niemi.lol>
Sat, 22 Apr 2023 20:23:56 +0000 (20:23 +0000)
committerGitHub <noreply@github.com>
Sat, 22 Apr 2023 20:23:56 +0000 (22:23 +0200)
lua/plugins/example.lua

index 39f342f389423d3eafc6c11ffc6d7b3983e338cb..ecc9567ebf331f06eeab012a3ae1555e0be13600 100644 (file)
@@ -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,
   },