Skip to content

Instantly share code, notes, and snippets.

View saravanaj's full-sized avatar
:shipit:

Saravana J saravanaj

:shipit:
View GitHub Profile
@saravanaj
saravanaj / nvim
Last active October 17, 2025 13:11
# Styles...
foreground: &foreground "#ebdbb2"
background: &background "#000000"
current_line: &current_line "#ebdbb2"
selection: &selection "#3c3735"
comment: &comment "#bdad93"
cyan: &cyan "#689d69"
green: &green "#989719"
orange: &orange "#d79920"
magenta: &magenta "#b16185"
@saravanaj
saravanaj / clean.zsh-theme
Created December 31, 2023 14:41
clean.zsh-theme
# 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"
}
[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
/// <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];
namespace DuckTyping
{
using System;
public class Duck
{
public void Quack()
{
Console.WriteLine("Quaaaaaack!");
}