Skip to content

Instantly share code, notes, and snippets.

@sygo
sygo / space_cadet.terminal
Created April 12, 2012 02:41
terminal.app Space Cadet colour scheme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ANSIBlueColor</key>
<data>
YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS
AAGGoKMHCA9VJG51bGzTCQoLDA0OViRjbGFzc1xOU0NvbG9yU3BhY2VVTlNSR0KAAhAC
TxAmMC4zMjU0OTAyMDY1IDAuMzYwNzg0MzIyIDAuNDYyNzQ1MTMwMQDSEBESE1okY2xh
c3NuYW1lWCRjbGFzc2VzV05TQ29sb3KiEhRYTlNPYmplY3RfEA9OU0tleWVkQXJjaGl2
@sygo
sygo / Xdefaults
Last active January 3, 2023 16:03
Xdefaults
!-- Urxvt settings --!
URxvt.buffered: true
URxvt.background: #000000
URxvt.foreground: #A9A9A9
URxvt.cursorColor: #5E468C
URxvt.geometry: 80x30
URxvt.transparent: true
URxvt.shading:20
URxvt.title: Urxvt
! Underlined text color
@sygo
sygo / bashrc
Last active September 25, 2015 02:07
bashrc
#-- be done if it's not an interactive session --#
[ -z "$PS1" ] && return
#-- prompt --#
PNORMAL='\[\033[00m\]'
PGREEN='\[\033[0;32m\]'
PRED='\[\033[0;31m\]'
PBLUE='\[\033[0;34m\]'
#PS1=['$?:${PWD#${PWD%/*/*/*}/}> '
@sygo
sygo / vimrc
Last active September 25, 2015 02:07
vimrc
" colors
set t_Co=256
" colorscheme miromiro
" detect filetype, associated plugins and auto indent, enable syntax highlight
filetype off
syntax enable
" backup things
set backup
@sygo
sygo / conf.hexdump
Last active August 7, 2023 15:00
additions to the standard grc.conf (check the appropriate conf files for each command)
# offset
regexp=([0-9a-fA-F]{1,7})+
colours=bold red
count=once
======
# Hex Bytes %_p
regexp=\|.+?\|
colours=cyan
count=once
======