Skip to content

Instantly share code, notes, and snippets.

@0x17de
Last active June 30, 2023 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0x17de/e69248842b350d631313f49e90bb8e7c to your computer and use it in GitHub Desktop.
Save 0x17de/e69248842b350d631313f49e90bb8e7c to your computer and use it in GitHub Desktop.
Xft.antialias: true
Xft.hinting: true
Xft.rgba: rgb
Xft.hintstyle: hintfull
Xft.dpi: 100
! Fonts
URxvt.font: xft:Inconsolata:size=12,xft:Noto Color Emoji:size=12
! URxvt.letterSpace: -1
URxvt.iso14755: false
URxvt.iso14755_52: false
! Set TERM environment variable
URxvt*termName: xterm-256color
! Set geometry (Columns x Rows)
URxvt*geometry: 100x30
! Hide the scrollbar
URxvt*scrollBar: false
! Set scrollback buffer to a large number, for example, 65536
URxvt*saveLines: 65536
! Disable cursor blinking
URxvt*cursorBlink: false
! Scrollback with keyboard
URxvt.keysym.Shift-Up: command:\033]720;1\007
URxvt.keysym.Shift-Down: command:\033]721;1\007
! Scrollback with mouse
URxvt.secondaryWheel: true
! Enables font antialiasing
URxvt*antialias: true
! Clipboard requires xsel
! See https://github.com/simmel/urxvt-resize-font
! # mkdir -p ~/.urxvt/ext/; cd ~/.urxvt/ext/
! # wget https://raw.githubusercontent.com/simmel/urxvt-resize-font/master/resize-font
URxvt.perl-ext-common: default,selection-to-clipboard,tabbed,matcher,searchable-scrollback,resize-font,-tabbed
URxvt.keysym.C-minus: resize-font:smaller
URxvt.keysym.C-equal: resize-font:bigger
URxvt.keysym.Shift-Control-C: perl:selection-to-clipboard
URxvt.keysym.Shift-Control-V: eval:paste_clipboard
! Gruvbox color scheme
URxvt*background: #282828
URxvt*foreground: #ebdbb2
! black
URxvt*color0: #282828
URxvt*color8: #928374
! red
URxvt*color1: #cc241d
URxvt*color9: #fb4934
! green
URxvt*color2: #98971a
URxvt*color10: #b8bb26
! yellow
URxvt*color3: #d79921
URxvt*color11: #fabd2f
! blue
URxvt*color4: #458588
URxvt*color12: #83a598
! magenta
URxvt*color5: #b16286
URxvt*color13: #d3869b
! cyan
URxvt*color6: #689d6a
URxvt*color14: #8ec07c
! white
URxvt*color7: #a89984
URxvt*color15: #ebdbb2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment