return { { "joeveiga/ng.nvim", enabled = true, config = function() local opts = { noremap = true, silent = true } local ng = require("ng"); vim.keymap.set("n", "at", function() ng.goto_template_for_component({ reuse_window = true }) end, opts) vim.keymap.set("n", "ac", function() ng.goto_component_with_template_file({ reuse_window = true }) end, opts) vim.keymap.set("n", "aT", function() ng.get_template_tcb({ reuse_window = true }) end, opts) end, }, }