Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
url = http://github.com/vim-ruby/vim-ruby.git
[submodule "bundle/matchit"]
path = bundle/matchit
url = http://github.com/tsaleh/vim-matchit.git
url = https://github.com/eshock/vim-matchit.git
[submodule "bundle/tabular"]
path = bundle/tabular
url = http://github.com/godlygeek/tabular.git
Expand Down
16 changes: 8 additions & 8 deletions modules/general.vim
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@ set foldlevel=19
" == Helping The old vices & annoying mistakes
" We don't want anything to do with the mundane way
" of moving between characters
nmap <up> <nop>
nmap <down> <nop>
nmap <left> <nop>
nmap <right> <nop>
imap <up> <nop>
imap <down> <nop>
imap <left> <nop>
imap <right> <nop>
"nmap <up> <nop>
"nmap <down> <nop>
"nmap <left> <nop>
"nmap <right> <nop>
"imap <up> <nop>
"imap <down> <nop>
"imap <left> <nop>
"imap <right> <nop>
" move on the screen line, no the file line
nnoremap j gj
nnoremap k gk
Expand Down