Add tagalong vim plugin

This commit is contained in:
don philipe
2023-05-24 15:32:23 +02:00
parent 708022693d
commit 6109912a59

9
.vimrc
View File

@@ -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()