-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
52 lines (31 loc) · 921 Bytes
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
" ZirconCode's .vimrc
" remember :retab
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
" PLUGINS
Plugin 'tpope/vim-fugitive'
" Plugin 'scrooloose/nerdtree'
Plugin 'vim-latex/vim-latex'
" ---
call vundle#end() " required
filetype plugin indent on " required
"syntax on
" Late suite stuff
" OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to
" 'plaintex' instead of 'tex', which results in vim-latex not being loaded.
" The following changes the default filetype back to 'tex':
let g:tex_flavor='latex'
let g:Tex_DefaultTargetFormat='pdf'
let g:Tex_CompileRule_pdf='pdflatex -interaction=nonstopmode $*'
" Vim stuff
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set autoindent
set number
set showcmd
set incsearch