Skip to content

Instantly share code, notes, and snippets.

@hgoldstein95
Created November 28, 2016 17:53
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 hgoldstein95/186ce978392bddf4cbbe614274460951 to your computer and use it in GitHub Desktop.
Save hgoldstein95/186ce978392bddf4cbbe614274460951 to your computer and use it in GitHub Desktop.
Very simple vim configuration.
" Minimal vimrc for portable use.
" - Harrison Goldstein
set nocompatible
" Appearance
colorscheme morning
syntax on
if &term == "xterm"
set term=xterm-256color
endif
set t_RV=1
highlight Visual cterm=NONE ctermbg=10 ctermfg=NONE
set relativenumber
set number
" Editing
set autowriteall
let mapleader = " "
nnoremap ; :
set backspace=indent,eol,start
set expandtab
set tabstop=2
set softtabstop=2
set autoindent
set shiftwidth=2
nnoremap h <C-w><left>
nnoremap j <C-w><up>
nnoremap k <C-w><down>
nnoremap l <C-w><right>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment