This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; VirtuaWin - Switch to next desktop | |
sc169:: ; Forward | |
PostMessage, 1034, 1026, 0, , VirtuaWinMainClass | |
return | |
; VirtuaWin - Bring window to next desktop | |
+sc169:: ; Shift+Forward | |
PostMessage, 1049, 0, -1026, , VirtuaWinMainClass | |
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In the registry: | |
[HKEY_CURRENT_USER\Software\Microsoft\IntelliType Pro\ModelSpecific\1016\EventMapping\82] | |
The ModelSpecific\1016 stuff may be different depending on the keyboard | |
The 82 is the specific key (in this case, Favorite 5) | |
Reference here: http://xahlee.org/emacs/ms_keyboard/intellitype_rigistry.html | |
"Command"=dword:0000019c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function! FormatTableLine(line) | |
let curr_line = a:line | |
" Get rid of all leading or trailing spaces | |
let curr_line = substitute(curr_line, '^[ ]\{1,\}\|[ ]\{1,\}$', '', 'g') | |
" Replace all tabs with " | " | |
let curr_line = substitute(curr_line, '\t', ' | ', 'g') | |
" Possibly insert a leading | (if there isn't already one) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call pathogen#infect() | |
let s:local_vim_dir = expand("~/.vim-local") | |
if isdirectory(s:local_vim_dir) | |
call pathogen#infect(s:local_vim_dir) | |
endif | |
syntax enable | |
filetype plugin indent on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set wrap | |
set linebreak | |
set textwidth=0 | |
set wrapmargin=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function! FormatTableLine(line) | |
let curr_line = a:line | |
" Get rid of all leading or trailing spaces | |
let curr_line = substitute(curr_line, '^[ ]\{1,\}\|[ ]\{1,\}$', '', 'g') | |
" Replace all tabs with " | " | |
let curr_line = substitute(curr_line, '\t', ' | ', 'g') | |
" Possibly insert a leading | (if there isn't already one) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ack.vim | |
ctrlp.vim | |
tabular | |
vim-bad-whitespace | |
vim-buffergator | |
vim-colors-solarized | |
vim-powerline | |
vimwiki | |
ZoomWin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Path to your oh-my-zsh configuration. | |
ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="adambatkin" | |
# Example aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local return_code='%(?..%{$fg[red]%}%? ↵%{$reset_color%})' | |
local git_branch='$(git_prompt_status)%{$reset_color%}$(git_prompt_info)$(git_prompt_short_sha)' | |
ZSH_THEME_GIT_PROMPT_SHA_BEFORE=" %{$fg[red]%}(" | |
ZSH_THEME_GIT_PROMPT_SHA_AFTER=")%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY="" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setopt nocorrectall | |
setopt correct |
OlderNewer