Working on porting to tilde, other stuff too

This commit is contained in:
Josh Sherman 2014-06-30 08:31:21 -04:00
parent 9831a3b796
commit abe0dabb1c
3 changed files with 39 additions and 17 deletions

View file

@ -1,29 +1,46 @@
before: sudo easy_install pip
packages:
brew:
- Homebrew/homebrew-php
- joshtronic/homebrew-formulae
- bash
- bash-completion
- fortune
- ghi
- git
- htop
- hub
- sudo chown root:wheel /usr/local/Cellar/htop-osx/0.8.2.2/bin/htop
- sudo chmod u+s /usr/local/Cellar/htop-osx/0.8.2.2/bin/htop
- imagemagick
- imagesnap
- macvim
- may want to put logic here to link my gitshots
- memcached
- launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.memcached.plist
- launchctl load ~/Library/LaunchAgents/homebrew.mxcl.memcached.plist
- multitail
- mysql
- launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
- launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
- nginx
- script to link /var/www/*/conf/nginx.conf files
- logic to set the port # to 80 instead of 8080
- wondering if I should just start using 8080 to avoid sudo
- sudo nginx
- nmap
- node
- npm
- p7zip
- redis
- launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
- launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
- ssh-copy-id
- ruby
- vim
- wget
gem:
- hub
- sass
- terminal-notifier
npm:
- less@1.3

View file

@ -164,3 +164,11 @@ endfunction
function! AirlineThemePatch(palette)
let a:palette.normal.airline_a = [ '#ffffff', '#268bd2', 255, 33 ]
endfunction
" function LessToCss()
" let less_file = shellescape(expand('%:p'))
" let filename = shellescape(expand('%:r'))
" let command = "silent !lessc " . less_file . " " . filename . ".css"
" execute command
" endfunction
" autocmd BufWritePost,FileWritePost *.less call LessToCss()

View file

@ -116,14 +116,17 @@ alias lc="wc -l"
# zsh
alias zshrc="source ~/.zshrc"
# vim (and some other stuff)
# vim
alias v="vim -p"
alias vi="vim -p"
alias vim="vim -p"
alias vd="vimdiff"
alias vo="vim -O"
# Platform-specific
if [[ `uname` == "Darwin" ]];
then
alias vim="mvim -v -p"
alias v="mvim -v -p"
alias vd="mvimdiff -v"
alias vo="mvim -v -O"
alias unquarantine="xattr -r -d com.apple.quarantine *"
# Tell ls to be colourful
@ -136,10 +139,6 @@ then
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
export EDITOR="mvim -v"
else
alias v="vim -p"
alias vd="vimdiff"
alias vo="vim -O"
export PATH="$HOME/Source/bash:$PATH"
export EDITOR=vim
fi
@ -192,6 +191,4 @@ fi
# _update_brew_update
# fi
# Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting