-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
168 lines (139 loc) · 3.84 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
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
" Configuration des plugins avec Vundle
set nocompatible
filetype off
" Config du chemin d'exécution (runtime path) pour inclure les fonctionnalités
" de Vundle.
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" Activation de Vundle
Plugin 'VundleVim/Vundle.vim'
"
" Ajout des plugins
"
Plugin 'vim-airline/vim-airline'
Plugin 'tpope/vim-surround'
Plugin 'Raimondi/delimitMate'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/nerdcommenter'
Plugin 'vim-syntastic/syntastic'
Plugin 'pangloss/vim-javascript'
Plugin 'docunext/closetag.vim'
Plugin 'altercation/vim-colors-solarized'
Plugin 'tpope/vim-fugitive'
Plugin 'airblade/vim-gitgutter'
Plugin 'vitalk/vim-simple-todo'
Plugin 'editorconfig/editorconfig-vim'
Plugin 'tpope/vim-endwise'
" navigate in source code easily (structure etc), useful for Java
" Plugin 'vim-scripts/taglist.vim'
call vundle#end()
filetype plugin indent on
" Remap leader key
let mapleader=','
let maplocalleader=','
" ----------
" ----------
" Tabulations avec une largeur de 4 espaces
set tabstop=4
set shiftwidth=4
set cindent
set autoindent
syntax enable
" Apparence de l'éditeur : n° lignes + thème
set number
set cursorline
set relativenumber
set hlsearch
" couper les lignes selon les mots
set linebreak
" Gestion du thème
set bg=dark
colorscheme solarized
" Pour la taille de la police de gvim
set guifont=Monospace\ Regular\ 11
" Réglages de NERDCommenter
let g:NERDSpaceDelims = 1
let g:NERDCommentEmptyLines = 1
" Airline apparaît toujours
set laststatus=2
" Bouger le curseur automatiquement quand { + insérer automatiquement }
inoremap {<CR> {<CR>}<Esc>O
" empêcher conflits entre EditorConfig et Fugitive
let g:EditorConfig_exclude_patterns = ['fugitive://.*']
" ----------
"
" Configuration des touches pour la disposition bépo
" cf http://bepo.fr/wiki/Vim
"
" {W} -> [É]
" ——————————
" On remappe W sur É :
noremap é w
noremap É W
" Corollaire: on remplace les text objects aw, aW, iw et iW
" pour effacer/remplacer un mot quand on n’est pas au début (daé / laé).
onoremap aé aw
onoremap aÉ aW
onoremap ié iw
onoremap iÉ iW
" 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édent)
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
" Remaper la gestion des fenêtres
" ———————————————————————————————
noremap wt <C-w>j
noremap ws <C-w>k
noremap wc <C-w>h
noremap wr <C-w>l
noremap wd <C-w>c
noremap wo <C-w>s
noremap wp <C-w>o
noremap w<SPACE> :split<CR>
noremap w<CR> :vsplit<CR>