Skip to content

Instantly share code, notes, and snippets.

View bracke's full-sized avatar
🎯
Focusing

Bent Bracke bracke

🎯
Focusing
View GitHub Profile
@bracke
bracke / .ackrc
Last active March 30, 2020 18:21
.ackrc
#ack is a tool like grep, designed for programmers with large trees of heterogeneous source code
#to install ack, see http://betterthangrep.com/
#to use ack, launch terminal (mac osx) and type 'ack <some_keywords>'
#ack will search all files in the current directory & sub-directories
#here's how I have my config file setup. this file is located on mac osx here
# ~/.ackrc
# Always sort the files
@bracke
bracke / .bash_prompt
Last active December 20, 2015 19:29
.bash_prompt
# @gf3’s Sexy Bash Prompt, inspired by “Extravagant Zsh Prompt”
# Shamelessly copied from https://github.com/gf3/dotfiles
# Screenshot: http://i.imgur.com/s0Blh.png
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then
export TERM=gnome-256color
elif infocmp xterm-256color >/dev/null 2>&1; then
export TERM=xterm-256color
fi
@bracke
bracke / .bash_profile
Last active December 20, 2015 19:29
.bash_profile
# Add `~/bin` to the `$PATH`
export PATH="$HOME/bin:$PATH"
export PATH="/usr/local/bin:$PATH"
export PATH="/usr/local/sbin:$PATH"
# Load the shell dotfiles, and then some:
# * ~/.path can be used to extend `$PATH`.
# * ~/.extra can be used for other settings you don’t want to commit.
for file in ~/.{path,bash_prompt,exports,aliases,functions,extra}; do
[ -r "$file" ] && source "$file"
@bracke
bracke / .bashrc
Created August 8, 2013 11:03
.bashrc
[ -n "$PS1" ] && source ~/.bash_profile
@bracke
bracke / HideMousepointer.css
Created November 17, 2012 17:08
Hide mouse pointer
*{ cursor : url("/images/blank.cur"), none; }