|
|
@ -108,3 +108,17 @@ noremap <Return> zz
|
|
|
|
" ______________________________________
|
|
|
|
" ______________________________________
|
|
|
|
set encoding=utf-8
|
|
|
|
set encoding=utf-8
|
|
|
|
set fileencoding=utf-8
|
|
|
|
set fileencoding=utf-8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
" Explorateur Ex
|
|
|
|
|
|
|
|
" ______________
|
|
|
|
|
|
|
|
if has("autocmd")
|
|
|
|
|
|
|
|
augroup netrw_dvorak_fix
|
|
|
|
|
|
|
|
autocmd!
|
|
|
|
|
|
|
|
autocmd filetype netrw call Fix_netrw_maps_for_dvorak()
|
|
|
|
|
|
|
|
augroup END
|
|
|
|
|
|
|
|
function! Fix_netrw_maps_for_dvorak()
|
|
|
|
|
|
|
|
noremap <buffer> t j
|
|
|
|
|
|
|
|
noremap <buffer> s k
|
|
|
|
|
|
|
|
noremap <buffer> k s
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
endif
|
|
|
|