Created
August 4, 2017 10:47
-
-
Save adamgavlak/95ce0228290838c39a61a5fe3337a34f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab | |
colorscheme badwolf | |
syntax enable | |
set number | |
set showcmd | |
set cursorline | |
filetype indent on | |
set wildmenu | |
set lazyredraw | |
set showmatch | |
" Searching | |
set incsearch | |
set hlsearch | |
" Movement | |
nnoremap j gj | |
nnoremap k gk | |
nnoremap B ^ | |
nnoremap E $ | |
nnoremap $ <nop> | |
nnoremap ^ <nop> | |
imap ;; <esc> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment