This file contains hidden or 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
| # Styles... | |
| foreground: &foreground "#ebdbb2" | |
| background: &background "#000000" | |
| current_line: ¤t_line "#ebdbb2" | |
| selection: &selection "#3c3735" | |
| comment: &comment "#bdad93" | |
| cyan: &cyan "#689d69" | |
| green: &green "#989719" | |
| orange: &orange "#d79920" | |
| magenta: &magenta "#b16185" |
This file contains hidden or 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
| # Thanks to lukerandall which is the base for this theme | |
| ZZ_NEWLINE=$'\n' | |
| local return_code="%(?..%{$fg_bold[red]%}$ %{$reset_color%})" | |
| function my_git_prompt_info() { | |
| ref=$(git symbolic-ref HEAD 2> /dev/null) || return | |
| GIT_STATUS=$(git_prompt_status) | |
| [[ -n $GIT_STATUS ]] && GIT_STATUS=" $GIT_STATUS" | |
| echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$GIT_STATUS$ZSH_THEME_GIT_PROMPT_SUFFIX" | |
| } |
This file contains hidden or 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
| [push] | |
| default = matching | |
| [diff] | |
| tool = vsdiffmerge | |
| [difftool] | |
| prompt = false | |
| [difftool "vsdiffmerge"] | |
| cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\IDE\\vsdiffmerge.exe\" \"$LOCAL\" \"$REMOTE\" //t | |
| keepBackup = false | |
| trustExitCode = true |
This file contains hidden or 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
| /// <reference path="./jquery-1.10.2-vsdoc.js" /> | |
| /// <reference path="./jquery-ui-1.10.3.js" /> | |
| /// <reference path="./jquery.jqGrid.src.js" /> | |
| window.jqGridSettings = {}; | |
| function bindConfiguration(key, options) { | |
| var p = window.jqGridSettings[options.idPrefix]; |
This file contains hidden or 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
| namespace DuckTyping | |
| { | |
| using System; | |
| public class Duck | |
| { | |
| public void Quack() | |
| { | |
| Console.WriteLine("Quaaaaaack!"); | |
| } |