summaryrefslogtreecommitdiff
path: root/.vimrc
blob: 7762b868092c176948d33141d32c5d6b1f4d9780 (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
""  Required by Vundle
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()

""  Plugins
Plugin 'gmarik/vundle'
Plugin 'LaTeX-Box-Team/latex-box'
Plugin 'fugitive.vim'
Plugin 'UltiSnips'
Plugin 'kien/ctrlp.vim'
Plugin 'tpope/vim-surround'
Plugin 'scrooloose/nerdtree'
Plugin 'tommcdo/vim-exchange'
Plugin 'unimpaired.vim'
Plugin 'Tabular'
Plugin 'tComment'
Plugin 'Gundo'
Plugin 'altercation/vim-colors-solarized'
Plugin 'honza/vim-snippets'

filetype plugin indent on

""  Configuration  

"  UltiSnips
let g:UltiSnipsExpandTrigger="<tab>"
let g:UltiSnipsJumpForwardTrigger="<tab>"
let g:UltiSnipsJumpBackwardTrigger="<s-tab>"
let g:UltiSnipsEditSplit="horizontal"
let g:UltiSnipsSnippetsDir="~/.vim/UltiSnips"
let g:ctrlp_open_new_file = 't'
noremap <c-tab> :UltiSnipsEdit<Return>

"  Latex-Box
let g:tex_flavor='latex'
let g:tex_conceal= 'adgm'
let g:LatexBox_Folding=0

"  Gundo
nnoremap <F5> :GundoToggle<cr>

"  Nerdtree
nnoremap <F3> :NERDTreeToggle<cr>
let NERDTreeIgnore=['\.pdf$', '\~$','\.toc$',
            \ '\.fls$','\.bbl$','\.blg$',
            \ '\.out$', '\.log$','\.aux$','\.sty$',
            \ '\.fdb_latexmk$', '\.synctex.gz$','\.latexmain$']

"  CTRL-P

let g:ctrlp_map = '<c-p>'
let g:ctrlp_by_filename = 1
let g:ctrlp_working_path_mode = ''
let g:ctrlp_show_hidden = 1

""  Options  

"  Tabs and indent
set smartindent
set nosmarttab
set expandtab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set autoindent
set cindent

"  Folds
set foldcolumn=0
set foldenable
set foldmethod=expr
set foldlevel=0

"  Search
set hlsearch
set incsearch

"  Back up files
set noswapfile
set nowritebackup
set undofile
set undodir=/home/urbain/.vimundo/

"  Layout window
set nonumber
set ruler
set showcmd
set listchars=tab:▸\ ,eol:¬
set fillchars=fold:\ ,vert:\ ,
set showbreak=...
set colorcolumn=0
set scrolloff=3
if has('gui_running')
    set t_Co=256
else
    set t_Co=256
endif
set guitablabel=%N\ %t\ %M
set showcmd

"  Layout text
set wrap
set linebreak
set textwidth=0
set conceallevel=2
set guifont=Monaco\ 11

"  Colorscheme
function! UpdateColorscheme()
    if strftime("%H") >= 9 && strftime("%H") < 18
        set background=light
    else
        set background=dark
    endif
endfunction
try | colorscheme solarized | catch | endtry
call UpdateColorscheme()
autocmd! BufNewFile,BufRead,BufWrite * :call UpdateColorscheme()

"  Case and spell
set nospell
set smartcase
set ignorecase

"  General
set noautochdir
set wildmenu
set cpoptions+=I
set encoding=utf-8


""  Custom mappings

"  Definition of leader and localleader
let mapleader = "\\"
let maplocalleader = "+"

"  Leader maps
nmap <Space> <Leader>
nmap <Leader>p <c-p> 
nmap <Leader>t <c-w>
nnoremap <Leader>h :set hlsearch!<cr>
nnoremap <Leader>n :set relativenumber!<cr>
nnoremap <Leader>q :q!<cr>
nnoremap <Leader>sv :source ~/.vimrc<cr>
nnoremap <Leader>sc :source %
nnoremap <Leader>w :w<cr>
nnoremap <Leader>te :tabedit 
nnoremap <Leader>tn :tabnew<cr>
nnoremap <Leader>to :tabonly<cr>

"  Other maps
nnoremap <Return> o<Esc>
nnoremap <s-Return> O<Esc>
nnoremap J mzJ`z
nnoremap - za
nnoremap <c-y> 3<c-y>
nnoremap <c-e> 3<c-e>

nnoremap j gj
nnoremap k gk
nnoremap $ g$
nnoremap ^ g^
nnoremap gj j
nnoremap gk k
nnoremap g$ $
nnoremap g^ ^

vnoremap j gj
vnoremap k gk
vnoremap $ g$
vnoremap ^ g^
vnoremap gj j
vnoremap gk k
vnoremap g$ $
vnoremap g^ ^

"  Convenient maps
" nnoremap e j
" nnoremap u k
" nnoremap j e
" nnoremap k u

""  Latex  
nmap <buffer> <F2> <Plug>LatexChangeEnv
let g:tex_fast="" 

"  Synctex 
function! LatexEvinceSearch()
    execute "!cd " . LatexBox_GetTexRoot() . '; evince_vim_dbus.py EVINCE "`basename ' . LatexBox_GetOutputFile(). '`" ' . line('.') . ' "%:p"'
endfun

command! LatexEvinceSearch call LatexEvinceSearch()

autocmd FileType tex map <F6> :silent LatexEvinceSearch <Return>
autocmd Filetype tex call SetTexOptions()

"  Layout
hi Cursor guifg=white guibg=blue
hi iCursor guifg=black guibg=green
hi! link conceal normal
hi! link folded comment

""  Functions  
function! Tex_ForwardSearchLaTeX()
    let cmd = 'evince_forward_search ' . fnamemodify(LatexBox_GetMainTexFile(), ":p:r") .  '.pdf ' . line(".") . ' ' . expand("%:p")
    let output = system(cmd)
endfunction

function! SetTexOptions()

    inoremap (( \left(
    inoremap )) \right)
    inoremap {{ \left\{
    inoremap }} \right\}
    inoremap [[ \left[
    inoremap ]] \right]
    inoremap == \,=\,
    inoremap >> \,\geq\,
    inoremap << \,\leq\,
    inoremap ++ \,+\,
    inoremap -- \,-\,

    imap `a \alpha
    imap `b \beta
    imap `g \gamma
    imap `d \delta
    imap `e \varepsilon
    imap `z \zeta
    imap `h \eta
    imap `t \theta
    imap `i \iota
    imap `k \kappa
    imap `l \lambda
    imap `m \mu
    imap `n \nu
    imap `x \xi
    imap `r \rho
    imap `s \sigma
    imap `f \phi
    imap `p \pi
    imap `w \omega

endfunction

""  Autocommands  
augroup autorelead_vimrc
    au! 
    au BufWritePost ~/.vimrc source ~/.vimrc
augroup END