-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
49 lines (42 loc) · 849 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
set number
set et
set gfn=Menlo:h13
set lines=54
set tabstop=4
set shiftwidth=4
set expandtab!
set background=dark
set hlsearch
set incsearch
set nocompatible
set ruler
set laststatus=2
set showcmd
set showmode
set autoindent
" set listchars=tab:▸\ ,eol:¬
set list
set t_Co=256
filetype indent on
if exists("syntax_on")
syntax reset
endif
colorscheme blue
if has("gui_running")
set guioptions=egmrt
set cc=80
end
map ,p :!pdflatex % &
map ,b :!bibtex % &
map ,v :!open %<.pdf &
map ,t :w !pdflatex % &
au BufNewFile,BufRead *.less set filetype=less
call pathogen#infect()
" Some Linux distributions set filetype in /etc/vimrc.
" Clear filetype flags before changing runtimepath to force Vim to reload them.
filetype off
filetype plugin indent off
set runtimepath+=$GOROOT/misc/vim
filetype plugin indent on
syntax on
filetype plugin on