Quick commit before reformatting

This commit is contained in:
Andrew Tomaka 2018-01-03 11:49:50 -05:00
parent 6312e20912
commit a3eb26d268
No known key found for this signature in database
GPG key ID: C78D1A81582BAC86
4 changed files with 14 additions and 3 deletions

View file

@ -80,6 +80,7 @@ alias pf="port-forward"
alias t="tmux new-session -A -s"
alias tf="tail -f"
alias tls="tmux list-sessions"
alias ts="tmuxinator start"
alias v="$EDITOR"
alias w="python -m SimpleHTTPServer"
alias wo="curl http://wttr.in/48912?m"

View file

@ -45,5 +45,5 @@
showUntrackedFiles = all
# show all files instead of just directories
[transfer]
fsckobjects = true
fsckobjects = false
# https://groups.google.com/forum/#!topic/binary-transparency/f-BI4o8HZW0

7
vimrc
View file

@ -24,6 +24,9 @@ Plug 'tpope/vim-markdown'
Plug 'tpope/vim-rails'
Plug 'vim-ruby/vim-ruby'
" Testing
" Plug 'w0rp/ale'
call plug#end()
filetype plugin indent on
@ -59,7 +62,7 @@ set showcmd " Show command as you type
set ruler " Show cursor position
set autoindent " autoindent AND be smart about it
set smartindent
set colorcolumn=80 " Ruler at line 80
set colorcolumn=80,120 " Ruler at line 80, 120
set nomodeline
set relativenumber " Relative line numbers
set number
@ -90,7 +93,7 @@ set list listchars=tab:\ \ ,trail:·
" Ignore stuff
set wildignore+=*/\.git/*
" Java
set wildignore+=*/build/*,*/grade/*,*\.class
" set wildignore+=*/build/*,*/grade/*,*\.class
" Frontend
set wildignore+=*/node_modules/*,*/bower_components/*,*/dist/*
" Persistent undo stuff

7
zshrc
View file

@ -54,3 +54,10 @@ setopt auto_cd
# better word definition
autoload -U select-word-style
select-word-style bash
# tabtab source for serverless package
# uninstall by removing these lines or running `tabtab uninstall serverless`
[[ -f /Users/atomaka/Source/tweet-africa/node_modules/tabtab/.completions/serverless.zsh ]] && . /Users/atomaka/Source/tweet-africa/node_modules/tabtab/.completions/serverless.zsh
# tabtab source for sls package
# uninstall by removing these lines or running `tabtab uninstall sls`
[[ -f /Users/atomaka/Source/tweet-africa/node_modules/tabtab/.completions/sls.zsh ]] && . /Users/atomaka/Source/tweet-africa/node_modules/tabtab/.completions/sls.zsh