Last active
September 9, 2016 19:24
-
-
Save remexre/f0a8458742ee91b06a047efaf90bf331 to your computer and use it in GitHub Desktop.
Dotfiles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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 = [email protected] | |
name = Nathaniel Ringo | |
[filter "lfs"] | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
required = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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