]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Add missing timezones to dates.
authorSimon Ruderich <simon@ruderich.org>
Sun, 31 Oct 2010 18:04:04 +0000 (19:04 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 31 Oct 2010 18:04:04 +0000 (19:04 +0100)
vimrc

diff --git a/vimrc b/vimrc
index 612ebd98a3ff65841e8f4abba48eac4655d9d302..582797ebc522f035aae17a30cf898a84f5991f6a 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -4,7 +4,7 @@
 " EDITOR SETTINGS
 
 " Prevent editing as root as it may cause security problems. Use sudoedit
-" instead. Thanks to godlygeek in #vim on Freenode (2009-06-19 22:21).
+" instead. Thanks to godlygeek in #vim on Freenode (2009-06-19 22:21 CEST).
 if $HOME == '/root' || exists('$SUDO_USER')
     echomsg 'Running as root is forbidden! Use sudoedit.'
     qall
@@ -206,7 +206,7 @@ cmap <Right> <Nop>
 cmap <Left>  <Nop>
 
 " Use Ctrl-P/Ctrl-N as replacement for <Up>/<Down> in command mode. Thanks to
-" abstrakt and grayw in #vim on Freenode (2010-04-12 21:20).
+" abstrakt and grayw in #vim on Freenode (2010-04-12 21:20 CEST).
 cnoremap <C-P> <Up>
 cnoremap <C-N> <Down>
 
@@ -215,7 +215,7 @@ nnoremap <Space> <C-F>
 nnoremap - <C-B>
 
 " Go to next and previous buffer. Thanks to elik in #vim on Freenode
-" (2010-05-16 18:38) for this idea.
+" (2010-05-16 18:38 CEST) for this idea.
 nnoremap <silent> gb :bnext<CR>
 nnoremap <silent> gB :bprev<CR>