From 6109912a595bcc8a040de99f8efdc3fa8f65ef6c Mon Sep 17 00:00:00 2001 From: don philipe Date: Wed, 24 May 2023 15:32:23 +0200 Subject: [PATCH] Add tagalong vim plugin --- .vimrc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.vimrc b/.vimrc index c056932..872f4fb 100644 --- a/.vimrc +++ b/.vimrc @@ -1,7 +1,5 @@ " general configuration: -syntax on " Turn on colors -filetype plugin on " Enables the ftplugin options -filetype indent on +syntax on " Turn on colors filetype plugin on " Enables the ftplugin options filetype indent on set nocompatible " turn off vi-compatibility (should be on by default) set autoindent " Automaticaly indent while writing set smarttab @@ -80,6 +78,11 @@ Plug 'python-mode/python-mode', { 'for': 'python', 'branch': 'develop' } " Latex-Suite Plug 'vim-latex/vim-latex' +" tagalong +" to automatically edit closing HTML tags +" tag names should be changed either in insert mode or via 'cw' +Plug 'AndrewRadev/tagalong.vim' + call plug#end()