aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc4
1 files changed, 0 insertions, 4 deletions
diff --git a/vimrc b/vimrc
index 16808ad..440c0ea 100644
--- a/vimrc
+++ b/vimrc
@@ -20,8 +20,6 @@ set ignorecase " ignore case in search
set smartcase " respect case in search if uppercase is used
set nowrap " do not wrap lines
set backspace=indent,eol,start " backspace over all stuff
-set cursorcolumn " highlight the current column
-set cursorline " highlight the current line
set vb t_vb= " no beeping
set laststatus=2 " always show the status line
@@ -98,8 +96,6 @@ nnoremap <c-j> <c-w>j
nnoremap <c-k> <c-w>k
nnoremap <c-h> <c-w>h
nnoremap <c-l> <c-w>l
-inoremap jk <Esc>
-inoremap kj <Esc>
" NERDTree
nnoremap <C-e> :NERDTreeToggle<Enter>