Skip to content

Instantly share code, notes, and snippets.

@remexre
Last active September 9, 2016 19:24
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 remexre/f0a8458742ee91b06a047efaf90bf331 to your computer and use it in GitHub Desktop.
Save remexre/f0a8458742ee91b06a047efaf90bf331 to your computer and use it in GitHub Desktop.
Dotfiles
[alias]
lg = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
[push]
default = simple
[user]
email = remexre@gmail.com
name = Nathaniel Ringo
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'fatih/vim-go'
Plugin 'majutsushi/tagbar'
Plugin 'rust-lang/rust.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/syntastic'
Plugin 'valloric/youcompleteme'
call vundle#end()
filetype plugin indent on
let g:go_fmt_command = "goimports"
let g:syntastic_go_checkers = ['golint', 'govet', 'errcheck']
let g:syntastic_mode_map = { 'mode': 'active', 'passive_filetypes': ['go'] }
set tabstop=4
syntax on
export ZSH="${HOME}/.oh-my-zsh"
ZSH_THEME="ys"
plugins=(common-aliases compleat dircycle git git-extras npm pip python redis-cli sudo tmux)
export AWS_ACCESS_KEY_ID="y5Ywo7UxCYgooxiX"
export AWS_SECRET_ACCESS_KEY="PSwdZ7AdZ3AZXoCF"
export EDITOR="vim"
export GOPATH="${HOME}/go"
export RUST_SRC_PATH="/usr/src/rust/src"
export PATH="${HOME}/.local/bin:${HOME}/.cargo/bin:${HOME}/.gem/ruby/2.3.0/bin:${GOPATH}/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
source $ZSH/oh-my-zsh.sh
alias hd="hexdump -C"
eval $(thefuck --alias)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment