malabya
6/9/2019 - 3:15 PM

.vimrc

packadd! onedark.vim
syntax on " enable syntax highlighting                           
colorscheme onedark " use onedark atom theme https://github.com/joshdick/onedark.vim                                              
set backspace=indent,eol,start                                   
set nocompatible " fixes some weird bugs in insert mode          
set number " show line numbers                                   
set incsearch " search as characters are entered                 
set hlsearch " highlight matches                                 
set tabstop=4 softtabstop=0 expandtab shiftwidth=2 smarttab

" move vertically by visual line                                 
nnoremap j gj                                                    
nnoremap k gk