Skip to content

Instantly share code, notes, and snippets.

View seanvaleo's full-sized avatar

Sean Valeo seanvaleo

View GitHub Profile
[Configuration]
MiscAlwaysShowTabs=FALSE
MiscBell=FALSE
MiscBellUrgent=FALSE
MiscBordersDefault=TRUE
MiscCursorBlinks=FALSE
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK
MiscDefaultGeometry=80x24
MiscInheritGeometry=FALSE
MiscMenubarDefault=FALSE
""""""""" Plug-Vim """"""""""
" After adding below, install with :PlugInstall
" define plugins
call plug#begin('~/.vim/plugged')
" Auto-completion for all supported languages
Plug 'Valloric/YouCompleteMe', { 'do': './install.py --all' }
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
# Don't put duplicate lines or lines starting with space in the history
HISTCONTROL=ignoreboth