Skip to content

Commit f68eb88

Browse files
committedSep 7, 2017
Update colors, add base16-shell and steps to Rakefile, update Syntastic, added cursor line
1 parent c480ec5 commit f68eb88

File tree

821 files changed

+31629
-122613
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

821 files changed

+31629
-122613
lines changed
 

‎Rakefile

+15-11
Original file line numberDiff line numberDiff line change
@@ -189,23 +189,27 @@ task :install do
189189
# Install Vundle and bundles
190190
Rake::Task['install:vundle'].invoke
191191

192-
step 'iterm2 colorschemes'
193-
colorschemes = `defaults read com.googlecode.iterm2 'Custom Color Presets'`
194-
dark = colorschemes !~ /Solarized Dark/
195-
light = colorschemes !~ /Solarized Light/
196-
sh('open', '-a', '/Applications/iTerm.app', File.expand_path('iterm2-colors-solarized/Solarized Dark.itermcolors')) if dark
197-
sh('open', '-a', '/Applications/iTerm.app', File.expand_path('iterm2-colors-solarized/Solarized Light.itermcolors')) if light
198-
199192
step 'iterm2 profiles'
200193
puts
201194
puts " All done! That was easy!"
202195
puts
203-
puts " Now, for your iTerm colors, you can manually set up Solarized Light and Dark profiles."
196+
puts " Now, for your iTerm colors, you can manually set up your base16 color profiles."
204197
puts " You can do this in 'Preferences' -> 'Profiles' by adding a new profile,"
205-
puts " then clicking the 'Colors' tab, 'Load Presets...' and choosing a Solarized option."
206-
puts " Also be sure to set Terminal Type to 'xterm-256color' in the 'Terminal' tab."
198+
puts " then clicking the 'Colors' tab, 'Load Presets...' and importing all the colors in the iterm-colors folder."
199+
puts
200+
puts " Then, set Terminal Type to 'xterm-256color' in the 'Terminal' tab."
201+
puts " Then, clone the repository for base16-shell:"
202+
puts " $ git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell"
203+
puts
204+
puts " Once that's done, add these lines to your ~/.bashrc, ~/.bash_profile, or ~/.zshrc:"
205+
puts ' BASE16_SHELL=$HOME/.config/base16-shell/'
206+
puts ' [ -n "$PS1" ] && [ -s $BASE16_SHELL/profile_helper.sh ] && eval "$($BASE16_SHELL/profile_helper.sh)"'
207+
puts
208+
puts " And then, open a new shell and type:"
209+
puts " $ base16_default-dark"
210+
puts " (there are other commands available, try typing base16 and hit tab to see the options)"
207211
puts
208-
puts " Have fun with your new and improved vim!"
212+
puts " And you're done! Have fun with your new and improved vim!"
209213
puts
210214
end
211215

‎vim/colors/.DS_Store

-46 KB
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.