Skip to content

Instantly share code, notes, and snippets.

@0xTowel
Last active November 5, 2018 03:48
Show Gist options
  • Save 0xTowel/f8501a77e101a5bc7ee2e39dc30777f5 to your computer and use it in GitHub Desktop.
Save 0xTowel/f8501a77e101a5bc7ee2e39dc30777f5 to your computer and use it in GitHub Desktop.
A bare-minimum, portable vimrc. Not pretty or fancy.
" My bare-minimum, portable vimrc
inoremap <special> jk <ESC>
inoremap <special> kj <ESC>
set clipboard^=unnamedplus
set relativenumber
set number
set backspace=eol,start,indent
set whichwrap+=<,>,h,l
set ignorecase
set smartcase
set incsearch
set lazyredraw
set showmatch
set mat=2
set ffs=unix,dos,mac
set nobackup
set nowb
set noswapfile
set expandtab
set smarttab
set shiftwidth=4
set tabstop=4
set nowrap
map <space> /
map <c-space> ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment