51 lines
1.4 KiB
HTML
51 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title></title>
|
|
<link href="style.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<h1>Brew</h1>
|
|
<p>Nice Homebrew packages:</p>
|
|
|
|
<ul>
|
|
<li><code>tig</code> - Git "GUI" for the console</li>
|
|
<li><code>mysql</code></li>
|
|
<li><code>postgresql</code></li>
|
|
<li><code>fmdiff</code> - Adaptor to use Apple's FileMerge as <code>diff</code> (<code>git config --global merge-tool fmdiff</code>)</li>
|
|
<li><code>cmus</code> - Curses-based music player</li>
|
|
<li><code>cclive</code> - Video downloader</li>
|
|
</ul>
|
|
|
|
<p>Not from brew:</p>
|
|
|
|
<ul>
|
|
<li><code>DiffMerge</code> - nice free merge tool for OSX</li>
|
|
</ul>
|
|
|
|
<h2>Tmux</h2>
|
|
|
|
<p>Install a more-recent version that supports tmux -C</p>
|
|
|
|
<pre><code>brew install https://github.com/adamv/homebrew-alt/raw/master/other/tmux-iterm2.rb
|
|
</code></pre>
|
|
|
|
<p>Install the wrapper for stuff to enable OSX clipboard to work</p>
|
|
|
|
<pre><code>brew install reattach-to-user-namespace --wrap-pbcopy-and-pbpaste
|
|
</code></pre>
|
|
|
|
<p>Make sure that your VIM alias uses it</p>
|
|
|
|
<pre><code>alias vim="reattach-to-user-namespace /Application/MacVim/Contents/MacOS/Vim"
|
|
</code></pre>
|
|
|
|
|
|
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/1.6.4/jquery.min.js'></script>
|
|
<script src="http://cachedcommons.org/cache/prettify/1.0.0/javascripts/prettify-min.js"></script>
|
|
<script>$("pre").addClass("prettyprint");</script>
|
|
<script>prettyPrint();</script>
|
|
</body>
|
|
</html>
|