From 98f0eaf3362f227059b5a021ccb8322fb07247da Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sun, 3 Dec 2023 15:44:56 -0500 Subject: [PATCH] neovim: Auto-close tags with nvim-ts-autotag In the rare event that emmet isn't used, nvim-ts-autotag auto-closes tags when > is typed. --- home/neovim.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home/neovim.nix b/home/neovim.nix index 8bccf6eb..b1a89878 100644 --- a/home/neovim.nix +++ b/home/neovim.nix @@ -525,6 +525,13 @@ in require('alpha').setup(startify.config) ''; } + { + plugin = nvim-ts-autotag; + type = "lua"; + config = /* lua */ '' + require('nvim-ts-autotag').setup() + ''; + } fzf-vim vim-caddyfile vim-graphql