New stuff

This commit is contained in:
Josh Sherman 2014-09-05 09:42:17 -04:00
parent abe0dabb1c
commit 2cff3ace10
3 changed files with 23 additions and 2 deletions

View file

@ -1,7 +1,10 @@
before: sudo easy_install pip
before: xcode-select --install
before: https://github.com/php-test-helpers/php-test-helpers/issues/23#issuecomment-29418653
packages:
brew:
- Homebrew/dupes
- Homebrew/homebrew-php
- joshtronic/homebrew-formulae
- bash
@ -16,24 +19,32 @@ packages:
- may want to put logic here to link my gitshots
- memcached
- launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.memcached.plist
- ln -sfv /usr/local/opt/memcached/*.plist ~/Library/LaunchAgents
- launchctl load ~/Library/LaunchAgents/homebrew.mxcl.memcached.plist
- multitail
- mysql
- launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
- ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents
- launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
- nginx
- ln -sfv /usr/local/opt/nginx/*.plist ~/Library/LaunchAgents
- launchctl load ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist
- 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
- p7zip
# - p7zip
- php55 --with-fpm --with-pgsql --with-mysql
- cp /usr/local/Cellar/php55/5.5.14/homebrew.mxcl.php55.plist ~/Library/LaunchAgents/
- launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php55.plist
- redis
- ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
- launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
- launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
- ssh-copy-id
- ruby
# - ruby
- vim
- wget

View file

@ -3,6 +3,7 @@ set background=dark
set backspace=indent,eol,start
set colorcolumn=80
set cursorline
"set expandtab
set foldmethod=marker
set hidden
set history=1000
@ -48,8 +49,10 @@ Bundle 'junegunn/goyo.vim'
Bundle 'kien/ctrlp.vim'
"Bundle 'kshenoy/vim-signature' " Errors... really want to use it tho
Bundle 'Lokaltog/vim-easymotion'
Bundle 'majutsushi/tagbar'
Bundle 'MarcWeber/vim-addon-mw-utils'
Bundle 'nanotech/jellybeans.vim'
Bundle 'nathanaelkane/vim-indent-guides'
Bundle 'nginx.vim'
Bundle 'othree/html5.vim'
Bundle 'pangloss/vim-javascript.git'
@ -108,6 +111,8 @@ let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#fnamemod = ':t'
let g:airline#extensions#tabline#show_buffers = 0
let g:airline#extensions#tabline#show_tab_nr = 0
let g:indent_guides_start_level = 2
let g:indent_guides_guide_size = 1
let g:NERDTreeMouseMode = 3
let g:NERDTreeWinSize = 40

View file

@ -110,6 +110,11 @@ alias quit="exit"
# rsync
alias rsync="rsync --compress --progress"
# servers
alias aurora="ssh aurora"
alias apps1="ssh availability@apps1"
alias apps1root="ssh root@apps1"
# wc
alias lc="wc -l"