guest@dotshare [~/groups/vim/rc] $ ls YAVF/ | cat

YAVF (scrot, raw, dl) (+1 likes)

ipos Jun 24, 2011 (vim/rc)

SCROT

  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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
" _____       _ _     _ _           _ _  __     ___                    
"|_   _|_   _(_) |__ | (_)_ __   __| (_) \ \   / (_)_ __ ___  _ __ ___ 
"  | | \ \ / / | '_ \| | | '_ \ / _` | |  \ \ / /| | '_ ` _ \| '__/ __|
"  | |  \ V /| | |_) | | | | | | (_| | |   \ V / | | | | | | | | | (__ 
"  |_|   \_/ |_|_.__/|_|_|_| |_|\__,_|_|    \_/  |_|_| |_| |_|_|  \___|
"

"=== Pré-configuration =======================================================
runtime! debian.vim
set nocompatible

if filereadable("/etc/vim/vimrc.local")
  source /etc/vim/vimrc.local
endif

if has("autocmd")
  au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
  filetype plugin indent on
endif

call pathogen#runtime_append_all_bundles()
if has("autocmd")
  autocmd! bufwritepost .vimrc source ~/.vimrc
endif

filetype plugin on
set ofu=syntaxcomplete#Complete
runtime ftplugin/man.vim

function ModeChange()
  if getline(1) =~ "^#!.*/bin/*"
      silent !chmod u+x <afile>
  endif
endfunction
au BufWritePost * call ModeChange()

let MRU_Auto_Close = 1
command Conque :set nolist | ConqueTerm zsh
command Zshs :set nolist | ConqueTermSplit zsh
command Zsh :set nolist | ConqueTerm zsh
command Bpythons :set nolist | ConqueTermSplit bpython
command Bpython :set nolist | ConqueTerm bpython
"=============================================================================

"=== Interface ===============================================================
if has("syntax")
  syntax on
endif
set t_Co=256
highlight NbSp ctermbg=lightgray guibg=lightred
match NbSp /\%xa0/

"--- GVim -----------------------------------------------------------
if has('gui_running')
	"set guifont=Terminus
	":set guioptions-=m  "remove menu bar
	set guioptions-=T  "remove toolbar
	set guioptions-=r  "remove right-hand scroll bar
	nnoremap <C-F1> :if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>
	nnoremap <C-F2> :if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>
	nnoremap <C-F3> :if &go=~#'r'<Bar>set go-=r<Bar>else<Bar>set go+=r<Bar>endif<CR>
	"slate,ron,torte,fruity,dante,dw_red,dw_orange
	colorscheme neverland-darker
	"colorscheme zenburn
	highlight SpellBad term=underline gui=undercurl guisp=Orange
else
	set t_Co=256
	"colorscheme anotherdark
	colorscheme neverland-darker
	"colorscheme zenburn
endif

if !has("gui_running")
	if &term =~ "rxvt-unicode"
		let &t_SI = "\033]12;white\007"
		let &t_EI = "\033]12;red\007"
 
		:silent !echo -ne "\033]12;red\007"
		autocmd VimLeave * :silent :!echo -ne "\033]12;red\007"
	endif
endif

set laststatus=2
set statusline= " clear
set statusline+=%-3.3n\ "nombre buffer
set statusline+=%f\ "nom fichier
set statusline+=%h%m%r%w "flags
set statusline+=[%{strlen(&ft)?&ft:'none'}, "type fichier
set statusline+=%{strlen(&fenc)?&fenc:&enc}, "encodage
set statusline+=%{&fileformat}] "format fichier
set statusline+=%*
set statusline+=%= "alignement droite
"set statusline+=%-14.(%l,%c%V%)\ %<%P " offset
set statusline+=%{strftime('%H\h%M')} "heure
set statusline+=\ [(%(%l,%c%V%)) "position
set statusline+=\ %<%P]

"set background=dark
set number                " Nombre de lignes affiché
set si                    " Indentations ''intelligentes''
set showcmd               " Show (partial) command in status line.
set showmatch             " Show matching brackets.
set mouse=a               " Enable mouse usage (all modes)
set mousehide
set showmode
set ruler
set autochdir             " Changement automatique de repertoire
set fileformats=unix,dos  " Formats Unix et DOS
set encoding=utf-8        " Formatage UTF-8
set fileencoding=utf-8    " Idem
set ttyfast               " Améliore la rapidité d'affichage
set shell=zsh             " Précise le shell à utiliser
set incsearch             " recherche incrémentale
set hlsearch              " highlighte le dernier motif de recherche                                          "
set formatprg=par\ 80j    " Le programme de formatage est par, et justifie selon des lignes de 80 caractères.
set history=1000          " Vim retient 1000 commandes en historique
set hidden                " Meilleure gestion des buffers
set wildmenu              " Completion dans l'interface
set wildmode=list:longest " Comportement de la complétion semblable à celui d'un shell
set title
"=============================================================================

"=== Rédaction en LaTeX, orthographe =========================================
"--- Correction orthographique---------------------------------------
setlocal spell spelllang=fr                                   " Correcteur orthographique pour le français
set nospell                                                   " Par défaut, pas de correction orthographique
autocmd BufEnter,BufNewFile,BufRead *.txt set spell           " Activation pour les .txt
au filetype tex set spell                                     " Activation pour les fichiers TeX/LaTeX
" Ajustement pour la fonction d’activation/desactivation de la correction orthographique
autocmd BufEnter,BufNewFile,BufRead *.txt let g:spellactive=1
au filetype tex let g:spellactive=1

"--- LaTeX ----------------------------------------------------------
au filetype tex set grepprg=grep\ -nH\ $*
au filetype tex let g:tex_flavor='latex'
au bufNewFile *.tex set ft=latex.tex      " Template pour LaTeX
au filetype tex set sw=2
au filetype tex set iskeyword+=:
au filetype tex set list                  " Affichage des caractères invisibles (retours à la ligne, etc…)
"=============================================================================

"=== Programmation ===========================================================

"--- Python ---------------------------------------------------------
autocmd FileType python set omnifunc=pythoncomplete#Complete "Complétion
"au bufNewFile *.py 0r ~/.vim/templates/python.py "Template Python (Méthode sans plugin)
au bufNewFile *.py set ft=python.py " Template Python (Méthode par plugin)
au filetype python set expandtab    " Indentation par espaces
"au filetype python let w:m1=matchadd('ErrorMsg', '\%>80v.\+', -1) " Formatage PEP8 emmerdant
au filetype python highlight OverLength term=bold
au filetype python match OverLength /\%80v.\+/    " Formatage PEP8 souple
au filetype python set foldmethod=indent          " Repli par indentations
au filetype python set cindent                    " Indentation automatique
au filetype python set autoindent shiftwidth=4    " Largeur de l'indentation définie à 4 espaces
au filetype python set softtabstop=4              " Insertion intelligente de tabs/espaces
au filetype python set list                       " Affichage des caractères invisibles…
au filetype python set lcs:tab:>-,trail:X         " …et définition de leur apparence
au BufEnter *.rpy set syntax=renpy.vim

"--- C/CPP ----------------------------------------------------------
au bufNewFile *.c 0r ~/.vim/templates/c.c     " Template pour les fichiers .c (Méthode sans plugin -> FIXME)
au bufNewFile *.h 0r ~/.vim/templates/h.h     " Template pour les fichiers .h (Méthode sans plugin -> FIXME)
au filetype c set omnifunc=ccomplete#Complete " Complétion
au filetype c set cindent                     " Indentation automatique
au filetype c set autoindent shiftwidth=4     " Largeur de l'indentation définie à 4 espaces
au filetype c set softtabstop=4               " Insertion intelligente de tabs/espaces
au filetype c set foldmethod=syntax           " Repli par mots reservés
au filetype c set list                        " Affichage des caractères invisibles…
au filetype c set lcs:tab:>-,trail:X          " …et définition de leur apparence

"--- Ruby -----------------------------------------------------------
au bufNewFile *.rb set ft=ruby.rb " Template Ruby (Méthode par plugin)
"=============================================================================

"=== Keymapings ==============================================================
"--- Touche F5 ------------------------------------------------------
"  ____                          _               __     _          _   _            _       _ 
" / ___|_ __ ___ _ __   __ _  __| | ___    ___  / _|   / \   _ __ | |_(_) ___   ___| |__   | |
"| |  _| '__/ _ \ '_ \ / _` |/ _` |/ _ \  / _ \| |_   / _ \ | '_ \| __| |/ _ \ / __| '_ \  | |
"| |_| | | |  __/ | | | (_| | (_| |  __/ | (_) |  _| / ___ \| | | | |_| | (_) | (__| | | | |_|
" \____|_|  \___|_| |_|\__,_|\__,_|\___|  \___/|_|  /_/   \_\_| |_|\__|_|\___/ \___|_| |_| (_)
au filetype tex map <F5> <c-\><c-n>:w<cr>:!pdflatex %<cr>:!apvlv %:r.pdf<cr>:!rm -f *.out *.aux *.log<cr>
au filetype python map <F5> :w<CR>:!echo -e '---Python---\n'<CR>:!python2 %<CR>:!rm *.pyc<CR>:!rm *py~<CR>
au filetype c map <F5> <c-\><c-n>:!gcc *.c -o %:r<cr>\rr<cr>
au filetype sh map <F5> <c-\><c-n>:!./%<cr>
au filetype ruby map <F5> :w<CR>:!echo -e '---Ruby---\n'<CR>:!ruby %<CR>
imap <F5> <Esc><F5>
vmap <F5> <Esc><F5>
noremap <F5> <Esc><F5>
"--- Touche F2 : Tabs -----------------------------------------------
map <silent> <F2> :tabnext<cr>
imap <F2> <Esc><F2>
"--- Touche F6 : NERDTree -------------------------------------------
map <silent> <F6> :execute ToggleNERDTree()<cr>
imap <F6> <Esc><F6>
"--- Touche F7 : Correction orthographique --------------------------
map <silent> <F7> :execute ToggleSpell()<CR>
imap <F7> <Esc><F7>
"--- F8 : TList -----------------------------------------------------
map <silent> <F8> :execute ToggleTList()<cr>
imap <F8> <Esc><F8>
"--- F9 : MRU -------------------------------------------------------
map <silent> <F9> :MRU<cr>
imap <F8> <Esc><F9>
"--- Touche leader ( \ ) +  … ---------------------------------------
">>> Gundo
map <leader>g :GundoToggle<CR>
">>> Workspace
map <leader>w :WsToggle<CR>
">>> Écrire la date dans le fichier
map <leader>d :r !strftime("%d/%m/%y %H:%M")<CR>
">>> Modifier le vimrc (L+v) et le recharger (L+s)
nmap <leader>v :e ~/.vimrc<CR>
nmap <leader>s :source ~/.vimrc<CR>
">>> Presse papier de X
nmap <leader>p :r! xsel -p<CR>
if exists(":Tabularize")
	nmap <leader>t= :Tabularize /=<CR>
	vmap <leader>t= :Tabularize /=<CR>
	nmap <leader>t: :Tabularize /:<CR>
	vmap <leader>t: :Tabularize /:<CR>
endif
if exists('*HexHighlight()')
  nmap <leader>c :call HexHighlight()<Return>
endif
"--- Touches diverses -----------------------------------------------
">>> Changer les splits de taille avec + et -
nnoremap <silent> + :exe "resize " . (winheight(0) * 3/2)<CR>
nnoremap <silent> - :exe "resize " . (winheight(0) * 2/3)<CR>
map ,gc :!gca<cr>
map ,g :!gca<CR>:!gpom<CR>
">>> Déplacement de lignes
nmap <C>s [e
nmap <C>t ]e
vmap <C>s [egv
vmap <C>t ]egv

"--- Disposition BÉPO -----------------------------------------------
"source ~/.vimrc.bepo
" {W} -> [É]
" ——————————
" On remappe W sur É :
noremap é w
noremap É W
" Corollaire, pour effacer/remplacer un mot quand on n’est pas au début (daé / laé).
" (attention, cela diminue la réactivité du {A}…)
noremapaw
noremap aÉ aW
" Pour faciliter les manipulations de fenêtres, on utilise {W} comme un Ctrl+W :
noremap w <C-w>
noremap W <C-w><C-w>
 
" [HJKL] -> {CTSR}
" ————————————————
" {cr} = « gauche / droite »
noremap c h
noremap r l
" {ts} = « haut / bas »
noremap t j
noremap s k
" {CR} = « haut / bas de l'écran »
noremap C H
noremap R L
" {TS} = « joindre / aide »
noremap T J
noremap S K
" Corollaire : repli suivant / précédent
noremap zs zj
noremap zt zk
 
" {HJKL} <- [CTSR]
" ————————————————
" {J} = « Jusqu'à »            (j = suivant, J = précédant)
noremap j t
noremap J T
" {L} = « Change »             (l = attend un mvt, L = jusqu'à la fin de ligne)
noremap l c
noremap L C
" {H} = « Remplace »           (h = un caractère slt, H = reste en « Remplace »)
noremap h r
noremap H R
" {K} = « Substitue »          (k = caractère, K = ligne)
noremap k s
noremap K S
" Corollaire : correction orthographique
noremap ]k ]s
noremap [k [s
 
" Désambiguation de {g}
" —————————————————————
" ligne écran précédente / suivante (à l'intérieur d'une phrase)
noremap gs gk
noremap gt gj
" onglet précédant / suivant
noremap gb gT
noremap gé gt
" optionnel : {gB} / {gÉ} pour aller au premier / dernier onglet
noremap gB :exe "silent! tabfirst"<CR>
noremap gÉ :exe "silent! tablast"<CR>
" optionnel : {g"} pour aller au début de la ligne écran
noremap g" g0
 
" <> en direct
" ————————————
noremap « <
noremap » >
au filetype tex noremap < «
au filetype tex noremap > »

" Chiffres en accès direct
" ————————————————————————
"noremap " 1
"noremap 1 "
"noremap « 2
"noremap 2 <
"noremap » 3
"noremap 3 >
"noremap ( 4
"noremap 4 (
"noremap ) 5
"noremap 5 )
"noremap @ 6
"noremap 6 @
"noremap + 7
"noremap 7 +
"noremap - 8
"noremap 8 -
"noremap / 9
"noremap 9 /
"noremap * 0
"noremap 0 *
"=============================================================================


"=== Fonctions persos ========================================================
"--- Activation/Désactivation de la correction orthographique -------
let g:spellactive=0
function! ToggleSpell()
	if g:spellactive != 1
		let g:spellactive=1
		execute("set spell")
	else
		let g:spellactive=0
		execute("set nospell")
	endif
endfunction

"--- Insertion de licenses ------------------------------------------
function! CCBYNCSA()
    execute(":r ~/.vim/licenses/ccbyncsa_insert")
endfunction
command CCBYNCSA :execute CCBYNCSA()

function! CCBYNCSALATEX()
    execute(":r ~/.vim/licenses/latex_ccbyncsa_insert.tex")
endfunction
command CCBYNCSALATEX :execute CCBYNCSALATEX()

function! GPL()
    execute(":r ~/.vim/licenses/gpl_insert")
endfunction
command GPL :execute GPL()

function! LGPL()
    execute(":r ~/.vim/licenses/lgpl_insert")
endfunction

function! GPLC()
    execute(":r ~/.vim/licenses/gpl-license")
endfunction

function! LGPLC()
    execute(":r ~/.vim/licenses/lgpl-license")
endfunction
"=============================================================================

"=== Fonctions pour les plugins ==============================================
"--- Afficher / Cacher NERDTree -------------------------------------
let g:nerdtreeopened=1
function! ToggleNERDTree()
	execute(":NERDTreeToggle")
	if g:nerdtreeopened != 0
	    let g:nerdtreeopened=0
	else
	    let g:nerdtreeopened=1
	endif
endfunction

function! ResumeNERDTree()
	if g:nerdtreeopened != 0
	    execute(":NERDTree")
	    execute(":NERDTreeMirror")
	else
	    execute(":NERDTreeClose")
	endif
endfunction

"--- Afficher / Cacher TList ----------------------------------------
let g:tlistopened=0
function! ToggleTList()
	execute(":TlistToggle")
	if g:tlistopened != 0
	    let g:tlistopened=0
	else
	    let g:tlistopened=1
	endif
endfunction

function! ResumeTList()
	if g:tlistopened != 0
	    execute(":TlistClose")
	    execute(":TlistOpen")
	else
	    execute(":TlistClose")
	endif
endfunction
"=============================================================================

CLICK TO VIEW

x

Notes

Include keymaping for bépo keyboard layout.