Created
April 10, 2018 08:07
-
-
Save adamgavlak/539a99bb9d2e295933f251d927cc7ca3 to your computer and use it in GitHub Desktop.
.vimrc 2018
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
syntax enable | |
colorscheme cobalt2 | |
set tabstop=2 | |
set softtabstop=2 | |
set expandtab | |
" UI Config | |
set number | |
set showcmd | |
set cursorline | |
filetype indent on | |
set wildmenu | |
set lazyredraw | |
set showmatch | |
" Searching | |
set incsearch | |
set hlsearch | |
" Folding | |
set foldenable | |
set foldlevelstart=10 | |
set foldnestmax=10 | |
nnoremap <space> za | |
" 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