-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvimrc
65 lines (49 loc) · 1.28 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
" Color scheme
" Indent to 4 spaces
set tabstop=2
set nocompatible
call pathogen#infect()
syntax on
filetype plugin indent on
set shiftwidth=2
set expandtab
set autoindent
"" C style indentation
"set cindent
"" terminal colorset
:colorscheme desert
set hlsearch
""let c_comment_strings=1
set mousehide
"" line numbers
set nu!
"" Page-up and Page-down
:map <space> <c-f>
:map <backspace> <c-b>
:map <F6> :!texi2pdf "%:t" && gs "%:t:r".pdf
"" Bash like completion
set wildmode=list:longest
set ignorecase
set smartcase
set scrolloff=3
"au BufWinLeave ?* mkview
"au BufWinEnter ?* silent loadview
retab
set spell spelllang=en_us
setlocal spell spelllang=en_us
highlight clear SpellBad
highlight SpellBad term=standout ctermfg=1 term=underline cterm=underline
highlight clear SpellCap
highlight SpellCap term=underline cterm=underline
highlight clear SpellRare
highlight SpellRare term=underline cterm=underline
highlight clear SpellLocal
highlight SpellLocal term=underline cterm=underline
"" where it should get the dictionary files
let g:spellfile_URL = 'http://ftp.vim.org/vim/runtime/spell'
let vimclojure#FuzzyIndent=1
let vimclojure#HighlightBuiltins=1
let vimclojure#HighlightContrib=1
let vimclojure#DynamicHighlighting=1
let vimclojure#ParenRainbow=1
let vimclojure#WantNailgun = 1