From 6564001d1c57039cc0b3795c9c0a77573c8e3881 Mon Sep 17 00:00:00 2001 From: Jorge Benavente Date: Thu, 2 May 2024 23:08:09 +0200 Subject: [PATCH] add autotag --- init.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/init.lua b/init.lua index aae45b3a..0c61b833 100644 --- a/init.lua +++ b/init.lua @@ -228,6 +228,20 @@ vim.opt.rtp:prepend(lazypath) require('lazy').setup({ -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). 'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically + 'tpope/vim-surround', + { + 'windwp/nvim-autopairs', + event = 'InsertEnter', + config = function() + require('nvim-autopairs').setup {} + end, + }, + { + 'windwp/nvim-ts-autotag', + config = function() + require('nvim-ts-autotag').setup {} + end, + }, -- NOTE: Plugins can also be added by using a table, -- with the first argument being the link and the following @@ -585,6 +599,7 @@ require('lazy').setup({ vim.list_extend(ensure_installed, { 'stylua', -- Used to format Lua code 'omnisharp', + 'angularls', 'netcoredbg', }) require('mason-tool-installer').setup { ensure_installed = ensure_installed }