summaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-05-17 23:22:09 -0500
committerJesse Luehrs <doy@tozt.net>2012-05-17 23:38:23 -0500
commitd70b5ceae5a75e7ff2f1e90159601f98ea998f37 (patch)
treed26c4c0a0c4feaa4f2f91ccd5158a4a7dcc9eeec /vimrc
parent16c0b4b51193162f90e94a63215834f1fa140551 (diff)
downloadconf-d70b5ceae5a75e7ff2f1e90159601f98ea998f37.tar.gz
conf-d70b5ceae5a75e7ff2f1e90159601f98ea998f37.zip
map 'e' to 'c', it's a lot easier to type
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/vimrc b/vimrc
index 4ad05b7..b548f95 100644
--- a/vimrc
+++ b/vimrc
@@ -509,6 +509,10 @@ nmap <silent> <Leader>= :call <SID>align_assignments()<CR>
" have Y behave analogously to D rather than to dd
nmap Y y$
+" try 'e' instead of 'c' for change
+map e c
+map E C
+
" buffer switching
nmap H :bp<CR>
nmap L :bn<CR>