Skip to content

Instantly share code, notes, and snippets.

@micdillon
Created February 5, 2015 17:55
Show Gist options
  • Save micdillon/4c577513efbcd8c96bea to your computer and use it in GitHub Desktop.
Save micdillon/4c577513efbcd8c96bea to your computer and use it in GitHub Desktop.
bare bones .vimrc
" stuff
set nowrap
set showmatch
set ignorecase
set smartcase
set smarttab
set hlsearch
set incsearch
set autoindent
" numbers
set number
set ruler
" tabs
set smarttab
set softtabstop=2
set tabstop=2
" splits
set splitbelow
set splitright
" disable bell
set vb t_vb=
" disable vim droppings
set nobackup
set noswapfile
" syntax
syntax on
colorscheme bclear
set autoindent
set autoread
set backupcopy=yes
set directory-=.
set encoding=utf-8
set expandtab
set ignorecase
set incsearch
set laststatus=4
set list
set listchars=tab:▸\ ,trail:▫
set number
set ruler
set scrolloff=3
set shiftwidth=2
set showcmd
set smartcase
set softtabstop=2
set tabstop=2
set wildignore=log/**,node_modules/**,target/**,tmp/**,*.rbc
set wildmenu
set wildmode=longest,list,full
set colorcolumn=80
set textwidth=80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment