Skip to content

Instantly share code, notes, and snippets.

@stillmatic
Created August 16, 2017 05:19
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 stillmatic/cc1f39d914321e124147c18d67fc5fa9 to your computer and use it in GitHub Desktop.
Save stillmatic/cc1f39d914321e124147c18d67fc5fa9 to your computer and use it in GitHub Desktop.
vimrc
execute pathogen#infect()
syntax on
filetype plugin indent on
set title
set ruler
set wrap
set autoread
set wildmenu
set number
set showcmd
set showmatch
set softtabstop=4 shiftwidth=4
set expandtab
if (has("termguicolors"))
set termguicolors
endif
if $TERM_PROGRAM =~ "iTerm"
let &t_SI = "\<Esc>]50;CursorShape=1\x7" " Vertical bar in insert mode
let &t_EI = "\<Esc>]50;CursorShape=0\x7" " Block in normal mode
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment