Added auto close brackets

This commit is contained in:
Tibo De Peuter 2022-04-26 16:31:05 +02:00
parent 1e94e7cde5
commit 6e411ae683

View file

@ -8,6 +8,9 @@ filetype indent on
set tabstop=4
set shiftwidth=0
set expandtab
set smarttab
set autoindent
set smartindent
set incsearch
set number
set showmatch
@ -15,6 +18,14 @@ set title
set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx
syntax on
" Automatically add closing parts
inoremap { {}<Left>
inoremap ( ()<Left>
inoremap [ []<Left>
inoremap < <><Left>
inoremap ' ''<Left>
inoremap " ""<Left>
" PLUGINS --------------------------------------------------------------- {{{
call plug#begin('~/.vim/plugged')