lazyvim-starter

My configuration changes to https://github.com/LazyVim/starter
git clone https://git.eamoncaddigan.net/lazyvim-starter.git
Log | Files | Refs | README | LICENSE

commit c5978d7e8c047390ec51a7bba78cdd9180954c71
parent 9ad6acdff121ad344cebeb640b48e6ed4d5a8f58
Author: Tom Mi <tommi@niemi.lol>
Date:   Sat, 22 Apr 2023 20:23:56 +0000

fix: remove help causing error as nonexistent (#23)


Diffstat:
Mlua/plugins/example.lua | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

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