diff --git a/other/_vimrc b/other/_vimrc new file mode 100644 index 0000000..0fcc668 --- /dev/null +++ b/other/_vimrc @@ -0,0 +1,23 @@ +set number +syntax on + +" stop making many '*~' files +set backup +set dir=%TMP% +set backupdir=%TMP% +set directory=%TMP% +set noundofile + +" 4 spaces for indentation +set tabstop=4 +set shiftwidth=4 +set expandtab + +" autoclose +inoremap " "" +inoremap ' '' +inoremap ( () +inoremap [ [] +inoremap { {} +inoremap { {}O +inoremap {; {};O \ No newline at end of file