Skip to content

Instantly share code, notes, and snippets.

@trappmartin
Last active July 17, 2018 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trappmartin/7527986f3e75666f515b94f668b912c3 to your computer and use it in GitHub Desktop.
Save trappmartin/7527986f3e75666f515b94f668b912c3 to your computer and use it in GitHub Desktop.
.vimrc
set nocompatible
color pablo
syntax on
set number
set backspace=indent,eol,start
" highlight found words
set hlsearch
" show matching parenthesis
set showmatch
" lightline plugin
set laststatus=2
filetype plugin indent on
" show existing tab with 4 spaces width
set tabstop=4
" when indenting with '>', use 4 spaces width
set shiftwidth=4
" On pressing tab, insert 4 spaces
set expandtab
" split navigations
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment