2
0
mirror of https://github.com/webgefrickel/dotfiles synced 2024-11-15 12:12:58 +00:00

less stuff to install

This commit is contained in:
Steffen Rademacker 2015-03-01 16:47:26 +01:00
parent d28d8e2ee3
commit 983356b054
6 changed files with 16 additions and 17 deletions

View File

@ -28,7 +28,6 @@ brew install the_silver_searcher
brew install wget brew install wget
brew install zsh brew install zsh
brew cask install dropbox
brew cask install forklift brew cask install forklift
brew cask install iterm2 brew cask install iterm2

View File

@ -8,18 +8,15 @@ brew install curl
brew install docker brew install docker
brew install boot2docker brew install boot2docker
brew install fasd brew install fasd
brew install ffmpeg
brew install ghostscript
brew install git-extras brew install git-extras
brew install git-flow brew install git-flow
brew install httpd brew install httpd
brew install imagemagick
brew install markdown brew install markdown
brew install mysql brew install mysql
brew install php55 brew install php56
brew install php55-mcrypt brew install php56-mcrypt
brew install php55-xdebug brew install php56-xdebug
brew install php55-intl brew install php56-intl
brew install composer brew install composer
brew install ssh-copy-id brew install ssh-copy-id
brew install unrar brew install unrar
@ -30,8 +27,10 @@ brew cask install adium
brew cask install alfred brew cask install alfred
brew cask install amadeus-pro brew cask install amadeus-pro
brew cask install bartender brew cask install bartender
brew cask install betterzipql
brew cask install carbon-copy-cloner brew cask install carbon-copy-cloner
brew cask install doxie brew cask install doxie
brew cask install dropbox
brew cask install firefox brew cask install firefox
brew cask install flux brew cask install flux
brew cask install google-chrome brew cask install google-chrome
@ -42,20 +41,20 @@ brew cask install istat-menus
brew cask install karabiner brew cask install karabiner
brew cask install libreoffice brew cask install libreoffice
brew cask install qlcolorcode brew cask install qlcolorcode
brew cask install qlimagesize
brew cask install qlmarkdown brew cask install qlmarkdown
brew cask install qlstephen brew cask install qlstephen
brew cask install quicklook-csv brew cask install quicklook-csv
brew cask install quicklook-json brew cask install quicklook-json
brew cask install seil brew cask install seil
brew cask install sequel-pro brew cask install sequel-pro
brew cask install skype
brew cask install slate brew cask install slate
brew cask install things brew cask install things
brew cask install transmission brew cask install transmission
brew cask install truecrypt brew cask install truecrypt
brew cask install virtualbox brew cask install virtualbox
brew cask install vlc brew cask install vlc
brew cask install wedge brew cask install webpquicklook
brew cask install xld brew cask install xld
# set some options for qlcolorcode # set some options for qlcolorcode

View File

@ -7,7 +7,6 @@ brew unlink node
brew link node brew link node
curl -L https://npmjs.org/install.sh | sh curl -L https://npmjs.org/install.sh | sh
npm install -g bower
npm install -g browserify npm install -g browserify
npm install -g dploy npm install -g dploy
npm install -g eslint npm install -g eslint
@ -17,6 +16,3 @@ npm install -g gulp
npm install -g jsonlint npm install -g jsonlint
npm install -g npm-check-updates npm install -g npm-check-updates
npm install -g recursive-blame npm install -g recursive-blame
npm install -g stylestats
npm install -g svgo
npm install -g vtop

View File

@ -1,5 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
rbenv instal 2.2.0
gem install bundler --no-document gem install bundler --no-document
gem install capistrano --no-document gem install capistrano --no-document
gem install compass --no-document gem install compass --no-document

9
vimrc
View File

@ -261,6 +261,9 @@ nnoremap k gk
" behave - yank just like D and C " behave - yank just like D and C
nnoremap Y y$ nnoremap Y y$
" auto-yanking with clipper for selected yanking, see leader-y mapping
vnoremap y y :call system('nc localhost 8377', @0)<cr>
" Search mappings: These will make it so that going to the next one in a " Search mappings: These will make it so that going to the next one in a
" search will center on the line it's found in. " search will center on the line it's found in.
nnoremap N Nzz nnoremap N Nzz
@ -417,13 +420,13 @@ smap <expr><TAB> neosnippet#expandable_or_jumpable() ?
" no checking for xhtml/html -- because of fluidtemplate for TYPO3 " no checking for xhtml/html -- because of fluidtemplate for TYPO3
" and no checking for scss.css because of CSS3 and SASS-Variable " and no checking for scss.css because of CSS3 and SASS-Variable
let g:syntastic_auto_jump = 0 let g:syntastic_auto_jump = 0
let g:syntastic_scss_checkers = ['scss_lint'] " let g:syntastic_scss_checkers = ['scss_lint']
let g:syntastic_javascript_checkers = ['eslint'] let g:syntastic_javascript_checkers = ['eslint']
let g:syntastic_json_checkers = ['jsonlint'] let g:syntastic_json_checkers = ['jsonlint']
let g:syntastic_mode_map = { let g:syntastic_mode_map = {
\ 'mode': 'active', \ 'mode': 'active',
\ 'active_filetypes': ['php', 'javascript', 'scss', 'json'], \ 'active_filetypes': ['php', 'javascript', 'json'],
\ 'passive_filetypes': ['xhtml', 'html'] \ 'passive_filetypes': ['xhtml', 'html', 'scss']
\ } \ }

View File

@ -43,6 +43,7 @@ alias l='gls -al --color=auto'
# Gitty gitgit # Gitty gitgit
alias g="git" alias g="git"
alias gf="git-flow" alias gf="git-flow"
alias gs="git status"
alias gst="git status" alias gst="git status"
alias ggpl='git pull origin $(current_branch)' alias ggpl='git pull origin $(current_branch)'
alias ggps='git push origin $(current_branch)' alias ggps='git push origin $(current_branch)'