Created
October 1, 2019 02:22
-
-
Save chaance/04e67ce5ec984128c9874583effa0e9f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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