made my vimrc more badass

This commit is contained in:
Brad Ganley 2018-07-30 14:06:01 -05:00
parent 73ac637ec1
commit d2c86b0cc3

View File

@ -1,4 +1,23 @@
let mapleader = "-"
inoremap kj <Esc>
nnoremap <left> <C-W>h
nnoremap <right> <C-W>l
nnoremap <up> <C-W>k
nnoremap <down> <C-W>j
map <C-a> :NERDTreeToggle <CR>
set nu set nu
set autoread
set nowrap
set shiftwidth=4
set shiftround
set showmatch
set ignorecase
set smarttab
set incsearch
set history=1000
set undolevels=1000
set visualbell
set title
set expandtab set expandtab
set autoindent set autoindent
set hlsearch set hlsearch
@ -6,4 +25,4 @@ set tabstop=4
colo ron colo ron
syntax on syntax on
set shiftround set shiftround
execute pathogen#infect()