Skip to content

Instantly share code, notes, and snippets.

@chaance
Created October 1, 2019 02:22
Show Gist options
  • Save chaance/04e67ce5ec984128c9874583effa0e9f to your computer and use it in GitHub Desktop.
Save chaance/04e67ce5ec984128c9874583effa0e9f to your computer and use it in GitHub Desktop.
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'editorconfig/editorconfig-vim'
Plugin 'jiangmiao/auto-pairs'
Plugin 'leafgarland/typescript-vim'
call vundle#end()
:syntax on "turn on syntax highlighting
set autoindent "auto-indent lines
augroup conf_ft
au!
autocmd BufNewFile,BufRead *.conf set syntax=apache
augroup END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment