Skip to content

Instantly share code, notes, and snippets.

View brentfisher's full-sized avatar
🥂
Let's get to work!

brentfisher

🥂
Let's get to work!
View GitHub Profile
@brentfisher
brentfisher / .vimrc
Created April 20, 2015 19:09
Sample .VIMRC
set noswapfile " removes annoying .swp files when opening the same file multiple times
set number " line numbers
syntax on " try to autoread syntax (based on filename)
" relative line numbers below > VIM 7.4
" set relativenumber
" Tab stuff, I perfer to use two spaces instead of hard tabs
set tabstop=2 " this is when you open a file with hard tabs in it, <TAB>
set softtabstop=2 " these are tabs when editing, so pressing TAB in insert mode
@brentfisher
brentfisher / .vimrc
Created April 20, 2015 19:09
Sample .VIMRC
set noswapfile " removes annoying .swp files when opening the same file multiple times
set number " line numbers
syntax on " try to autoread syntax (based on filename)
" relative line numbers below > VIM 7.4
" set relativenumber
" Tab stuff, I perfer to use two spaces instead of hard tabs
set tabstop=2 " this is when you open a file with hard tabs in it, <TAB>
set softtabstop=2 " these are tabs when editing, so pressing TAB in insert mode
@brentfisher
brentfisher / .vimrc
Last active August 29, 2015 14:19
Sample .VIMRC
set noswapfile " removes annoying .swp files when opening the same file multiple times
set number " line numbers
syntax on " try to autoread syntax (based on filename)
" relative line numbers below > VIM 7.4
" set relativenumber
" Tab stuff, I perfer to use two spaces instead of hard tabs
set tabstop=2 " this is when you open a file with hard tabs in it, <TAB>
set softtabstop=2 " these are tabs when editing, so pressing TAB in insert mode
@brentfisher
brentfisher / gist:af8267aa66adfd31f746
Created May 19, 2015 16:52
curL format with timings
\n\n
time_namelookup: %{time_namelookup}\n
time_connect: %{time_connect}\n
time_appconnect: %{time_appconnect}\n
time_pretransfer: %{time_pretransfer}\n
time_redirect: %{time_redirect}\n
time_starttransfer: %{time_starttransfer}\n
----------\n
time_total: %{time_total}\n
if [[ -z "$ANTIGEN_INITIALIZED" ]]; then
export ANTIGEN_LOG=/tmp/antigen.log
export ANTIGEN_INITIALIZED=1
source ~/antigen/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle pip
antigen bundle command-not-found
antigen bundle cp
antigen bundle colorize