" highlight syntax
syntax on 

" show line numbers
set number
" (also `set nu` works)

" disable the swapfile
set noswapfile

" highlight all results
set hlsearch

" ignore case in search
set ignorecase

" remap escape key for leaving insert mode
inoremap jk <ESC>

" change your leader key for shortcuts
let mapleader = "'"

" show search results as you type
set incsearch

" enable filetype detction, and loading of filetype plugins
filetype plugin on
