-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
20 lines (18 loc) · 859 Bytes
/
vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
set ruler laststatus=2 number title hlsearch
syntax on
" set tabstop=2
" set shiftwidth=2
" set softtabstop=2
set smarttab
" set expandtab
set autoindent
set cursorline
set background=dark
autocmd BufNewFile,BufRead *.rb set tabstop=2 shiftwidth=2 softtabstop=2 expandtab
autocmd BufNewFile,BufRead *.py set tabstop=4 shiftwidth=4 softtabstop=4 expandtab
autocmd BufNewFile,BufRead *.c* set tabstop=4 softtabstop=4 shiftwidth=4 expandtab
autocmd BufNewFile,BufRead *.h* set tabstop=4 softtabstop=4 shiftwidth=4 expandtab
autocmd BufNewFile,BufRead *.htm* set tabstop=2 softtabstop=2 shiftwidth=2 expandtab
autocmd BufNewFile,BufRead *.erb set tabstop=2 softtabstop=2 shiftwidth=2 expandtab
autocmd BufNewFile,BufRead *.js set tabstop=2 softtabstop=2 shiftwidth=2 expandtab
autocmd BufNewFile,BufRead *.css set tabstop=2 softtabstop=2 shiftwidth=2 expandtab