README
dotfiles
Created by Mark Eli Kalderon 2008-07-22
#Introduction
Directory of configuration files.
# http://henrik.nyh.se/2008/12/git-dirty-prompt | |
# http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/ | |
# Multi-line prompt that uses the function __git_ps1 provided by .git-completion.sh to parse the branch. | |
# ~/dev/dir(master} | |
# username $ # clean working directory | |
# ~/dev/dir(master)* | |
# username $ # dirty working directory | |
function parse_git_dirty { | |
git diff --quiet HEAD &>/dev/null |
%!TEX TS-program = xelatex | |
%!TEX TS-options = -synctex=1 -output-driver="xdvipdfmx -q -E" | |
%!TEX encoding = UTF-8 Unicode |
% TODO List | |
\usepackage{color} | |
\usepackage{index} % use index package to create indices | |
\newindex{todo}{tod}{tnd}{TODO List} % start todo list | |
\newindex{fixme}{fix}{fnd}{FIXME List} % start fixme list | |
\newcommand{\todo}[1]{\textcolor{blue}{TODO: #1}\index[todo]{#1}} % macro for todo entries | |
\newcommand{\fixme}[1]{\textcolor{red}{FIXME: #1}\index[fixme]{#1}} % macro for fixme entries |
#!/bin/sh | |
# | |
# installgit.sh | |
# | |
# A bash script to install the latest version of Git. Be sure to set the variables to the desired values. | |
# | |
# http://git.or.cz/ | |
# | |
# Mark Eli Kalderon 2008-07-25 | |
README
dotfiles
Created by Mark Eli Kalderon 2008-07-22
#Introduction
Directory of configuration files.
README
LaTeX Preamble
Created by Mark Eli Kalderon on 2008-07-30
LaTeX preamble and associated files. Meant to be used as a submodule of a Git repository. The file, preamble.tex, needs to be included in the LaTeX document under version control. See the provided template. For more information about keeping your LaTeX preamble in a Git submodule see this blog post.