Skip to content

Instantly share code, notes, and snippets.

@frankcash
Last active September 19, 2016 23:36
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 frankcash/5751d25733b51e2d6f7a to your computer and use it in GitHub Desktop.
Save frankcash/5751d25733b51e2d6f7a to your computer and use it in GitHub Desktop.
Frank's .dotfiles
set nocompatible " be iMproved, required
filetype off " required
set backspace=indent,eol,start
set mouse=a
set autoindent
set tabstop=2
set shiftwidth=2
set nofoldenable
set noshowmode
set nowrap
set nrformats+=alpha
set rnu
set nu
set ttyfast
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'L9'
Plugin 'git://git.wincent.com/command-t.git'
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
Bundle 'airblade/vim-gitgutter'
Bundle 'bling/vim-airline'
Bundle 'ntpeters/vim-better-whitespace'
Bundle 'bling/vim-bufferline'
Bundle 'phleet/vim-arcanist'
Bundle 'leafgarland/typescript-vim'
Bundle 'jeetsukumaran/vim-buffergator'
Bundle 'mattn/emmet-vim'
Bundle 'Raimondi/delimitMate'
Bundle 'kshenoy/vim-signature'
Bundle 'scrooloose/syntastic'
Bundle 'sjl/vitality.vim'
Bundle 'sjl/clam.vim'
Bundle 'markcornick/vim-vagrant'
Bundle 'tpope/vim-surround'
Bundle 'rosenfeld/conque-term'
Bundle 'tomtom/tlib_vim'
Bundle 'tomtom/viki_vim'
Bundle 'jelera/vim-javascript-syntax'
Bundle 'christoomey/vim-tmux-navigator'
Bundle 'tpope/vim-fireplace'
Bundle 'pct/present.vim'
Bundle 'altercation/vim-colors-solarized'
Bundle 'evidens/vim-twig'
Bundle 'Keithbsmiley/investigate.vim'
Bundle 'kien/rainbow_parentheses.vim'
let g:syntastic_javascript_checkers = ['jshint'] " requires jshint to be installed
let g:syntastic_python_checkers = ['flake8'] " requires flake8 to be installed
au VimEnter * RainbowParenthesesToggle
au Syntax * RainbowParenthesesLoadRound
au Syntax * RainbowParenthesesLoadSquare
au Syntax * RainbowParenthesesLoadBraces
set background=light
let g:solarized_visibility = "high"
let g:solarized_contrast = "high"
let g:solarized_termcolors=256
colorscheme solarized
highlight ColorColumn ctermbg=7
highlight ColorColumn guibg=Gray
highlight ExtraWhitespace ctermbg=white
set laststatus=2
set encoding=utf-8
call vundle#end() " required
filetype plugin indent on " required
syntax on
set splitbelow
set splitright
set scrolloff=5
set autoread
set shiftround
set colorcolumn=81
set ttimeout ttimeoutlen=0
set t_Co=256
export TERM=screen-256color
export PATH="/bin/lein:$PATH"
export PATH="/usr/lib/postgresql/9.4/bin:$PATH"
if [ "$TMUX" = "" ]; then tmux -2; fi
#I like vim
alias gedit="vim"
alias nano="vim"
alias vi="vim"
alias emacs="vim"
#actual commands
alias tmux="tmux -2"
alias space="df -h"
alias node="nodejs"
alias grep="grep -n "
alias gamepad="jstest-gtk"
alias ports="sudo netstat -tulpn"
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/foobar/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment