diff --git a/vim/vimrc.bepo b/vim/vimrc.bepo index e4da87b..84b2b6d 100644 --- a/vim/vimrc.bepo +++ b/vim/vimrc.bepo @@ -108,3 +108,17 @@ noremap zz " ______________________________________ set encoding=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 t j + noremap s k + noremap k s +endfunction +endif