Skip to content

Instantly share code, notes, and snippets.

View mgaebler's full-sized avatar
🏘️

Marian Gaebler mgaebler

🏘️
View GitHub Profile
@mgaebler
mgaebler / config.fish
Last active November 19, 2017 13:37 — forked from ronaldsuwandi/config.fish
My personal fish shell config for OS X (better blue colour for directory in dark terminal). Supports git branch
# nice light cyan color instead of dark blue
set -gx LSCOLORS gxfxcxdxbxegedabagacad
function ls --description 'List contents of directory'
command ls -lFG $argv
end
function code --description 'Launches visual code studio in a new window'
command code -n $argv
end