Skip to content

Instantly share code, notes, and snippets.

@joedicastro
Created May 18, 2012 22:21
Show Gist options
  • Save joedicastro/2727881 to your computer and use it in GitHub Desktop.
Save joedicastro/2727881 to your computer and use it in GitHub Desktop.
urxvt conf
URxvt.font: xft:Dejavu Sans Mono for Powerline:size=11
URxvt.iconFile: /usr/share/icons/Humanity/apps/24/terminal.svg
URxvt.letterSpace: -1
URxvt.background: #242424
URxvt.foreground: #FFFFFF
! black
URxvt.color0 : #2E3436
URxvt.color8 : #555753
! red
URxvt.color1 : #CC0000
URxvt.color9 : #EF2929
! green
URxvt.color2 : #4E9A06
URxvt.color10 : #8AE234
! yellow
URxvt.color3 : #C4A000
URxvt.color11 : #FCE94F
! blue
URxvt.color4 : #3465A4
URxvt.color12 : #729FCF
! magenta
URxvt.color5 : #75507B
URxvt.color13 : #AD7FA8
! cyan
URxvt.color6 : #06989A
URxvt.color14 : #34E2E2
! white
URxvt.color7 : #D3D7CF
URxvt.color15 : #EEEEEC
URxvt*saveLines: 32767
URxvt.perl-ext-common: default,matcher
URxvt.urlLauncher: firefox
URxvt.matcher.button: 1
Xft*dpi: 96
Xft*antialias: true
Xft*hinting: full
URxvt.scrollBar: false
urxvt*scrollTtyKeypress:true
urxvt*scrollTtyOutput:false
urxvt*scrollWithBuffer:false
urxvt*scrollstyle: plain
urxvt*secondaryScroll: true
# Use C-a instead of C-b as the prefix
set -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
#set 256 colors
set -g default-terminal "screen-256color"
# set default shell
set -g default-command "exec /bin/bash"
set -g display-time 2000
# set vi style key binding
set -g status-keys vi
setw -g mode-keys vi
# set scrollback
set -g history-limit 10000
# Start numbering at 1
set -g base-index 1
# Set status bar
set -g status-bg black
set -g status-fg white
## Highlight active window
set-window-option -g window-status-current-bg blue
# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf
set-window-option -g automatic-rename on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment