A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
| (setq mu4e-mu-binary "/usr/local/bin/mu" | |
| mu4e-sent-folder "/[Gmail].Sent Mail" | |
| mu4e-drafts-folder "/[Gmail].Drafts" | |
| mu4e-trash-folder "/[Gmail].Trash" | |
| mu4e-refile-folder "/Archives" | |
| mu4e-use-fancy-chars nil) | |
| (setq user-mail-address "foo" | |
| user-full-name "bar" | |
| mail-user-agent 'message-user-agent |
Download an export of your board, rename it to board.json, and place
it in the same directory as this README. For example:
https://trello.com/board/4f19b3693754fb034106c89d/welcome-board.json
Run trello2todotxt
| "Forget compatibility with Vi. Who cares. | |
| set nocompatible | |
| " Set encoding | |
| set encoding=utf-8 | |
| " searching | |
| set hlsearch | |
| set incsearch |
Created from the plain text reference card on orgmode.org Download this file, and open it in Emacs org-mode!
Answer by Jim Dennis on Stack Overflow question http://stackoverflow.com/questions/1218390/what-is-your-most-productive-shortcut-with-vim/1220118#1220118
Your problem with Vim is that you don't grok vi.
You mention cutting with yy and complain that you almost never want to cut whole lines. In fact programmers, editing source code, very often want to work on whole lines, ranges of lines and blocks of code. However, yy is only one of many way to yank text into the anonymous copy buffer (or "register" as it's called in vi).
The "Zen" of vi is that you're speaking a language. The initial y is a verb. The statement yy is a simple statement which is, essentially, an abbreviation for 0 y$:
0 go to the beginning of this line. y yank from here (up to where?)
| # ~/.tmux.conf | |
| # | |
| # See the following files: | |
| # | |
| # /opt/local/share/doc/tmux/t-williams.conf | |
| # /opt/local/share/doc/tmux/screen-keys.conf | |
| # /opt/local/share/doc/tmux/vim-keys.conf | |
| # | |
| # URLs to read: | |
| # |
| (add-hook 'find-file-hook | |
| '(lambda () | |
| (interactive) | |
| (view-mode))) |