Skip to content

Commit d27b095

Browse files
committed
Merge branch 'master' of github.com:square/maximum-awesome
2 parents c85dc59 + 07513d0 commit d27b095

File tree

8 files changed

+98
-70
lines changed

8 files changed

+98
-70
lines changed

README.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ peace-loving hippies. Built for Mac OS X.
55

66
## What's in it?
77

8-
* [MacVim](https://code.google.com/p/macvim/) (independent or for use in a terminal)
8+
* [MacVim](https://github.com/macvim-dev/macvim) (independent or for use in a terminal)
99
* [iTerm 2](http://www.iterm2.com/)
10-
* [tmux](http://tmux.sourceforge.net/)
10+
* [tmux](http://tmux.github.io/)
1111
* Awesome syntax highlighting with the [Solarized color scheme](http://ethanschoonover.com/solarized)
12-
* Want to know more? [Fly Vim, First Class](http://corner.squareup.com/2013/08/fly-vim-first-class.html)
12+
* Want to know more? [Fly Vim, First Class](https://corner.squareup.com/2013/08/fly-vim-first-class.html)
1313

1414
### vim
1515

1616
* `,d` brings up [NERDTree](https://github.com/scrooloose/nerdtree), a sidebar buffer for navigating and manipulating files
17-
* `,t` brings up [ctrlp.vim](https://github.com/kien/ctrlp.vim), a project file filter for easily opening specific files
17+
* `,t` brings up [ctrlp.vim](https://github.com/ctrlpvim/ctrlp.vim), a project file filter for easily opening specific files
1818
* `,b` restricts ctrlp.vim to open buffers
1919
* `,a` starts project search with [ag.vim](https://github.com/rking/ag.vim) using [the silver searcher](https://github.com/ggreer/the_silver_searcher) (like ack, but faster)
2020
* `ds`/`cs` delete/change surrounding characters (e.g. `"Hey!"` + `ds"` = `Hey!`, `"Hey!"` + `cs"'` = `'Hey!'`) with [vim-surround](https://github.com/tpope/vim-surround)
@@ -44,6 +44,15 @@ You can adjust the size of the smaller panes in `tmux.conf` by lowering or incre
4444

4545
rake
4646

47+
## Update
48+
49+
rake
50+
51+
This will update all installed plugins using Vundle's `:PluginInstall!`
52+
command. Any errors encountered during this process may be resolved by clearing
53+
out the problematic directories in ~/.vim/bundle. `:help PluginInstall`
54+
provides more detailed information about Vundle.
55+
4756
## Customize
4857
In your home directory, Maximum Awesome creates `.vimrc.local`, `.vimrc.bundles.local` and `.tmux.conf.local` files where you can customize
4958
Vim and tmux to your heart’s content. However, we’d love to incorporate your changes and improve Vim and tmux

Rakefile

+13-11
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,19 @@ def brew_install(package, *args)
1010
elsif options[:requires]
1111
# brew did not error out, verify tmux is greater than 1.8
1212
# e.g. brew_tmux_query = 'tmux 1.9a'
13-
installed_version = versions.split(/\n/).first.split(' ')[1]
14-
unless version_match?(options[:version], installed_version)
13+
installed_version = versions.split(/\n/).first.split(' ').last
14+
unless version_match?(options[:requires], installed_version)
1515
sh "brew upgrade #{package} #{args.join ' '}"
1616
end
1717
end
1818
end
1919

2020
def version_match?(requirement, version)
2121
# This is a hack, but it lets us avoid a gem dep for version checking.
22-
Gem::Dependency.new('', requirement).match?('', version)
22+
# Gem dependencies must be numeric, so we remove non-numeric characters here.
23+
matches = version.match(/(?<versionish>\d+\.\d+)/)
24+
return false unless matches.length > 0
25+
Gem::Dependency.new('', requirement).match?('', matches.captures[0])
2326
end
2427

2528
def install_github_bundle(user, package)
@@ -32,7 +35,7 @@ def brew_cask_install(package, *options)
3235
output = `brew cask info #{package}`
3336
return unless output.include?('Not installed')
3437

35-
sh "brew cask install #{package} #{options.join ' '}"
38+
sh "brew cask install --binarydir=#{`brew --prefix`.chomp}/bin #{package} #{options.join ' '}"
3639
end
3740

3841
def step(description)
@@ -128,11 +131,9 @@ namespace :install do
128131
task :brew_cask do
129132
step 'Homebrew Cask'
130133
system('brew untap phinze/cask') if system('brew tap | grep phinze/cask > /dev/null')
131-
unless system('brew tap | grep caskroom/cask > /dev/null') || system('brew tap caskroom/homebrew-cask')
132-
abort "Failed to tap caskroom/homebrew-cask in Homebrew."
134+
unless system('brew tap | grep caskroom/cask > /dev/null') || system('brew tap caskroom/cask')
135+
abort "Failed to tap caskroom/cask in Homebrew."
133136
end
134-
135-
brew_install 'brew-cask'
136137
end
137138

138139
desc 'Install The Silver Searcher'
@@ -165,7 +166,7 @@ namespace :install do
165166
task :tmux do
166167
step 'tmux'
167168
# tmux copy-pipe function needs tmux >= 1.8
168-
brew_install 'tmux', :requires => '>= 1.8'
169+
brew_install 'tmux', :requires => '>= 2.1'
169170
end
170171

171172
desc 'Install MacVim'
@@ -183,6 +184,7 @@ namespace :install do
183184
puts %{ echo 'export PATH="~/bin:$PATH"' >> ~/.bashrc}
184185
puts
185186
puts 'The exact command and file will vary by your shell and configuration.'
187+
puts 'You may need to restart your shell.'
186188
end
187189

188190
FileUtils.mkdir_p(bin_dir)
@@ -199,8 +201,8 @@ exec /usr/bin/Vim "$@"
199201
desc 'Install Vundle'
200202
task :vundle do
201203
step 'vundle'
202-
install_github_bundle 'gmarik','vundle'
203-
sh '~/bin/vim -c "BundleInstall" -c "q" -c "q"'
204+
install_github_bundle 'VundleVim','Vundle.vim'
205+
sh '~/bin/vim -c "PluginInstall!" -c "q" -c "q"'
204206
end
205207
end
206208

tmux.conf

+19-12
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."
1111
setw -g mode-keys vi
1212

1313
# mouse behavior
14-
setw -g mode-mouse on
15-
set -g mouse-select-pane on
16-
set -g mouse-resize-pane on
14+
set -g mouse on
1715

1816
set-option -g default-terminal screen-256color
1917

@@ -26,20 +24,20 @@ bind-key bspace previous-window
2624
bind-key enter next-layout
2725

2826
# use vim-like keys for splits and windows
29-
bind-key v split-window -h
30-
bind-key s split-window -v
27+
bind-key v split-window -h -c "#{pane_current_path}"
28+
bind-key s split-window -v -c "#{pane_current_path}"
3129
bind-key h select-pane -L
3230
bind-key j select-pane -D
3331
bind-key k select-pane -U
3432
bind-key l select-pane -R
3533

36-
# smart pane switching with awareness of vim splits
37-
bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys C-h) || tmux select-pane -L"
38-
bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys C-j) || tmux select-pane -D"
39-
bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys C-k) || tmux select-pane -U"
40-
bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys C-l) || tmux select-pane -R"
41-
bind -n C-\ run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys 'C-\\') || tmux select-pane -l"
42-
bind C-l send-keys 'C-l'
34+
# uncomment below stanza to enable smart pane switching with awareness of vim splits
35+
# bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys C-h) || tmux select-pane -L"
36+
# bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys C-j) || tmux select-pane -D"
37+
# bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys C-k) || tmux select-pane -U"
38+
# bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys C-l) || tmux select-pane -R"
39+
# bind -n C-\ run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys 'C-\\') || tmux select-pane -l"
40+
# bind C-l send-keys 'C-l'
4341

4442
bind-key C-o rotate-window
4543

@@ -94,4 +92,13 @@ set-option -g default-command "/bin/zsh -c 'which reattach-to-user-namespace >/d
9492
# Allow the arrow key to be used immediately after changing windows
9593
set-option -g repeat-time 0
9694

95+
# Fix to allow mousewheel/trackpad scrolling in tmux 2.1
96+
bind-key -T root WheelUpPane if-shell -F -t = "#{alternate_on}" "send-keys -M" "select-pane -t =; copy-mode -e; send-keys -M"
97+
bind-key -T root WheelDownPane if-shell -F -t = "#{alternate_on}" "send-keys -M" "select-pane -t =; send-keys -M"
98+
99+
# Disable assume-paste-time, so that iTerm2's "Send Hex Codes" feature works
100+
# with tmux 2.1. This is backwards-compatible with earlier versions of tmux,
101+
# AFAICT.
102+
set-option -g assume-paste-time 0
103+
97104
source-file ~/.tmux.conf.local

vim/snippets/javascript/func.snippet

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
function(${1}) {
2+
${2}
3+
}

vim/snippets/javascript/itin.snippet

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
for (var ${1} in ${2}) {
2+
${3}
3+
}

vim/snippets/javascript/us.snippet

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
'use strict';
2+
${1}

vimrc

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,17 @@ syntax enable
77
" configure Vundle
88
filetype on " without this vim emits a zero exit status, later, because of :ft off
99
filetype off
10-
set rtp+=~/.vim/bundle/vundle/
11-
call vundle#rc()
10+
set rtp+=~/.vim/bundle/Vundle.vim
11+
call vundle#begin()
1212

1313
" install Vundle bundles
1414
if filereadable(expand("~/.vimrc.bundles"))
1515
source ~/.vimrc.bundles
1616
source ~/.vimrc.bundles.local
1717
endif
1818

19+
call vundle#end()
20+
1921
" ensure ftdetect et al work by including this after the Vundle stuff
2022
filetype plugin indent on
2123

@@ -67,7 +69,6 @@ nnoremap <leader>T :CtrlPClearCache<CR>:CtrlP<CR>
6769
nnoremap <leader>] :TagbarToggle<CR>
6870
nnoremap <leader><space> :call whitespace#strip_trailing()<CR>
6971
nnoremap <leader>g :GitGutterToggle<CR>
70-
nnoremap <leader>c <Plug>Kwbd
7172
noremap <silent> <leader>V :source ~/.vimrc<CR>:filetype detect<CR>:exe ":echo 'vimrc reloaded'"<CR>
7273
7374
" in case you forgot to sudo

vimrc.bundles

+41-40
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,44 @@
1-
" Bundles here are part of the CORE Maximum Awesome setup
1+
" Plugins here are part of the CORE Maximum Awesome setup
22
" Do NOT add bundles to this list, as they might get removed when you upgrade
33
" Maximum Awesome.
44
" Please create ~/.vimrc.bundles.local and add any extra bundles you want there
5-
Bundle 'airblade/vim-gitgutter'
6-
Bundle 'altercation/vim-colors-solarized'
7-
Bundle 'austintaylor/vim-indentobject'
8-
Bundle 'christoomey/vim-tmux-navigator'
9-
Bundle 'gmarik/vundle'
10-
Bundle 'juvenn/mustache.vim'
11-
Bundle 'kchmck/vim-coffee-script'
12-
Bundle 'kien/ctrlp.vim'
13-
Bundle 'leafgarland/typescript-vim'
14-
Bundle 'majutsushi/tagbar'
15-
Bundle 'rking/ag.vim'
16-
Bundle 'garbas/vim-snipmate'
17-
Bundle 'MarcWeber/vim-addon-mw-utils'
18-
Bundle 'tomtom/tlib_vim'
19-
Bundle 'nathanaelkane/vim-indent-guides'
20-
Bundle 'nono/vim-handlebars'
21-
Bundle 'pangloss/vim-javascript'
22-
Bundle 'wookiehangover/jshint.vim'
23-
Bundle 'scrooloose/nerdtree'
24-
Bundle 'scrooloose/syntastic'
25-
Bundle 'slim-template/vim-slim'
26-
Bundle 'tpope/vim-bundler'
27-
Bundle 'tpope/vim-commentary'
28-
Bundle 'tpope/vim-cucumber'
29-
Bundle 'tpope/vim-endwise'
30-
Bundle 'tpope/vim-fugitive'
31-
Bundle 'tpope/vim-pastie'
32-
Bundle 'tpope/vim-ragtag'
33-
Bundle 'tpope/vim-rails'
34-
Bundle 'tpope/vim-repeat'
35-
Bundle 'tpope/vim-surround'
36-
Bundle 'tpope/vim-unimpaired'
37-
Bundle 'tpope/vim-vividchalk'
38-
Bundle 'eventualbuddha/vim-protobuf'
39-
Bundle 'vim-ruby/vim-ruby'
40-
Bundle 'vim-scripts/Align'
41-
Bundle 'vim-scripts/greplace.vim'
42-
Bundle 'vim-scripts/matchit.zip'
43-
Bundle 'flazz/vim-colorschemes'
5+
Plugin 'VundleVim/Vundle.vim'
6+
Plugin 'airblade/vim-gitgutter'
7+
Plugin 'altercation/vim-colors-solarized'
8+
Plugin 'austintaylor/vim-indentobject'
9+
Plugin 'christoomey/vim-tmux-navigator'
10+
Plugin 'juvenn/mustache.vim'
11+
Plugin 'kchmck/vim-coffee-script'
12+
Plugin 'ctrlpvim/ctrlp.vim'
13+
Plugin 'leafgarland/typescript-vim'
14+
Plugin 'majutsushi/tagbar'
15+
Plugin 'rking/ag.vim'
16+
Plugin 'garbas/vim-snipmate'
17+
Plugin 'MarcWeber/vim-addon-mw-utils'
18+
Plugin 'tomtom/tlib_vim'
19+
Plugin 'nathanaelkane/vim-indent-guides'
20+
Plugin 'nono/vim-handlebars'
21+
Plugin 'pangloss/vim-javascript'
22+
Plugin 'wookiehangover/jshint.vim'
23+
Plugin 'scrooloose/nerdtree'
24+
Plugin 'scrooloose/syntastic'
25+
Plugin 'slim-template/vim-slim'
26+
Plugin 'tpope/vim-bundler'
27+
Plugin 'tpope/vim-commentary'
28+
Plugin 'tpope/vim-cucumber'
29+
Plugin 'tpope/vim-dispatch'
30+
Plugin 'tpope/vim-endwise'
31+
Plugin 'tpope/vim-fugitive'
32+
Plugin 'tpope/vim-pastie'
33+
Plugin 'tpope/vim-ragtag'
34+
Plugin 'tpope/vim-rails'
35+
Plugin 'tpope/vim-repeat'
36+
Plugin 'tpope/vim-surround'
37+
Plugin 'tpope/vim-unimpaired'
38+
Plugin 'tpope/vim-vividchalk'
39+
Plugin 'eventualbuddha/vim-protobuf'
40+
Plugin 'vim-ruby/vim-ruby'
41+
Plugin 'vim-scripts/Align'
42+
Plugin 'vim-scripts/greplace.vim'
43+
Plugin 'vim-scripts/matchit.zip'
44+
Plugin 'flazz/vim-colorschemes'

0 commit comments

Comments
 (0)