minimize + add alfred workflows for backup

main
Steffen Rademacker 8 years ago
parent 331526d2a5
commit 5b38b0bee9

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -1 +0,0 @@
gem: --no-document

@ -3,59 +3,43 @@ brew tap homebrew/dupes
brew tap homebrew/php
# install additional brew packages -- see _install.sh too
brew install boot2docker
brew install bmon
brew install composer
brew install curl
brew install docker
brew install fasd
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac
brew install git-extras
brew install git-flow
brew install httpd
brew install imagemagick
brew install markdown
brew install mysql
brew install mariadb
brew install nginx
brew install php56
brew install php56-intl
brew install php56-mcrypt
brew install php56-tidy
brew install php56-xdebug
brew install rbenv
brew install ruby-build
brew install ssh-copy-id
brew install the_silver_searcher
brew install wget
brew install youtube-dl
# brew cask and install software
brew cask install adium
brew cask install alfred
brew cask install amadeus-pro
brew cask install bartender
brew cask install carbon-copy-cloner
brew cask install doxie
brew cask install firefox
brew cask install flux
brew cask install google-chrome
brew cask install google-chrome-canary
brew cask install imagealpha
brew cask install imageoptim
brew cask install istat-menus
brew cask install karabiner
brew cask install libreoffice
brew cask install qlcolorcode
brew cask install qlimagesize
brew cask install qlmarkdown
brew cask install qlstephen
brew cask install quicklook-csv
brew cask install quicklook-json
brew cask install seil
brew cask install sequel-pro
brew cask install slate
brew cask install transmission
brew cask install virtualbox
brew cask install vlc
brew cask install webpquicklook
brew cask install xld
# set some options for qlcolorcode
defaults write org.n8gray.QLColorCode font Hack

@ -1,7 +0,0 @@
#!/usr/bin/env bash
rbenv install 2.3.0
gem install bundler --no-document
gem install capistrano --no-document
gem install sass --no-document
gem install scss_lint --no-document

@ -2,17 +2,17 @@
"======================================================================
NeoBundle 'Shougo/vimproc.vim', {
\ 'build': {
\ 'mac': 'make -f make_mac.mak',
\ 'linux': 'make',
\ 'unix': 'gmake'
\ }
\ }
\ 'build': {
\ 'mac': 'make -f make_mac.mak',
\ 'linux': 'make',
\ 'unix': 'gmake'
\ }
\ }
" use the bundled matchit instead of one from github
NeoBundle 'matchit.zip', {
\ 'on_map' : ['%', 'g%']
\ }
\ 'on_map' : ['%', 'g%']
\ }
let bundle = neobundle#get('matchit.zip')
function! bundle.hooks.on_post_source(bundle)
@ -23,6 +23,7 @@ endfunction
NeoBundle 'Shougo/neocomplete'
NeoBundle 'Shougo/neosnippet'
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/vimfiler.vim'
NeoBundle 'altercation/vim-colors-solarized'
NeoBundle 'cakebaker/scss-syntax.vim'
NeoBundle 'christoomey/vim-tmux-navigator'
@ -43,8 +44,3 @@ NeoBundle 'tpope/vim-unimpaired'
NeoBundle 'tpope/vim-vinegar'
NeoBundle 'webgefrickel/vim-snippets'
NeoBundle 'wellle/tmux-complete.vim'
" TODO, remove when fixed with newer macvim version
" use an old version of netrw, fixes split bug
NeoBundle 'vim-scripts/netrw.vim'

@ -7,12 +7,8 @@ let g:neosnippet#scope_aliases['scss'] = 'scss,css'
let g:neosnippet#scope_aliases['php'] = 'php,html'
let g:neosnippet#snippets_directory = '~/.vim/bundle/vim-snippets/snippets'
" Neosnippet - SuperTab like snippets behavior.
smap <C-k> <Plug>(neosnippet_expand_or_jump)
imap <C-k> <Plug>(neosnippet_expand_or_jump)
imap <expr><TAB> neosnippet#expandable_or_jumpable() ?
\ "\<Plug>(neosnippet_expand_or_jump)"
\: pumvisible() ? "\<C-n>" : "\<TAB>"
smap <expr><TAB> neosnippet#expandable_or_jumpable() ?
\ "\<Plug>(neosnippet_expand_or_jump)"
\: "\<TAB>"
" Plugin key-mappings, expand with ctrl + j
imap <C-j> <Plug>(neosnippet_expand_or_jump)
smap <C-j> <Plug>(neosnippet_expand_or_jump)
xmap <C-j> <Plug>(neosnippet_expand_target)

@ -0,0 +1,10 @@
" vimfiler
"======================================================================
let g:vimfiler_as_default_explorer = 1
let g:vimfiler_quick_look_command = 'qlmanage -p'
let g:vimfiler_ignore_pattern = []
call vimfiler#custom#profile('default', 'context', {
\ 'safe' : 0
\ })

@ -37,4 +37,5 @@ source ~/.vim/config/plugins/neosnippet.vim
source ~/.vim/config/plugins/syntastic.vim
source ~/.vim/config/plugins/unite.vim
source ~/.vim/config/plugins/sneak.vim
source ~/.vim/config/plugins/vimfiler.vim
source ~/.vim/config/plugins/wildfire.vim

Loading…
Cancel
Save