From fc4b82e1e7b11a59ac93cbd40dcf3d639381c838 Mon Sep 17 00:00:00 2001 From: Ralph Azucena Date: Mon, 8 Apr 2024 22:36:52 -0700 Subject: [PATCH] ensure ruby installed for treesitter --- lua/plugins/treesitter.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/treesitter.lua diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua new file mode 100644 index 0000000..2c2eb91 --- /dev/null +++ b/lua/plugins/treesitter.lua @@ -0,0 +1,10 @@ +return { + { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { + "ruby" + } + }, + }, +}