Skip to content

Instantly share code, notes, and snippets.

@tsukkee
Created October 14, 2009 05:52
Show Gist options
  • Select an option

  • Save tsukkee/209829 to your computer and use it in GitHub Desktop.

Select an option

Save tsukkee/209829 to your computer and use it in GitHub Desktop.
URxvt.termName: rxvt-256color
URxvt.foreground: White
URxvt.background: Gray10
URxvt.geometry: 120x38
URxvt.scrollBar: false
URxvt.saveLines: 1000
URxvt.font:\
xft:Menlo:style=Normal:size=10:antialias=true,\
xft:Osaka:style=Regular-Mono
URxvt.boldFont:\
xft:Menlo:style=Bold,\
xft:Osaka:style=Regular-Mono
URxvt.italicFont:\
xft:Menlo:style=Italic,\
xft:Osaka:style=Regular-Mono
URxvt.boldItalicFont:\
xft:Menlo:style=Bold Italic,\
xft:Osaka:style=Regular-Mono
! 円マークキー
keycode 101 = backslash bar yen bar
! 英数キー
keycode 110 = Muhenkan
! かな/カナキー
keycode 112 = Henkan_Mode
; ~/.uim.d/custom/custom-anthy-keys2.scm
(define anthy-on-key '("zenkaku-hankaku" "Private2" "Henkan_Mode"))
(define anthy-on-key? (make-key-predicate '("zenkaku-hankaku" "Private2" "Henkan_Mode")))
(define anthy-off-key '("zenkaku-hankaku" "Private1" "Muhenkan"))
(define anthy-off-key? (make-key-predicate '("zenkaku-hankaku" "Private1" "Muhenkan")))
(define anthy-begin-conv-key '(" "))
(define anthy-begin-conv-key? (make-key-predicate '(" ")))
(define anthy-commit-key '("return" "<IgnoreCase><Control>m"))
(define anthy-commit-key? (make-key-predicate '("return" "<IgnoreCase><Control>m")))
(define anthy-cancel-key '("escape" "<IgnoreShift><Control>[" "<IgnoreCase><Control>g"))
(define anthy-cancel-key? (make-key-predicate '("escape" "<IgnoreShift><Control>[" "<IgnoreCase><Control>g")))
(define anthy-next-candidate-key '(" " "down" "<IgnoreCase><Control>n"))
(define anthy-next-candidate-key? (make-key-predicate '(" " "down" "<IgnoreCase><Control>n")))
(define anthy-prev-candidate-key '("up" "<IgnoreCase><Control>p"))
(define anthy-prev-candidate-key? (make-key-predicate '("up" "<IgnoreCase><Control>p")))
(define anthy-next-page-key '("next"))
(define anthy-next-page-key? (make-key-predicate '("next")))
(define anthy-prev-page-key '("prior"))
(define anthy-prev-page-key? (make-key-predicate '("prior")))
; ~/.uim.d/custom/custom-xim.scm
(define uim-xim-use-xft-font? #t)
(define uim-xim-xft-font-name "Osaka")
<?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>XMODIFIERS</key>
<string>@im=uim</string>
<key>GTK_IM_MODULE</key>
<string>uim</string>
</dict>
</plist>
#!/opt/local/bin/zsh --login
export XMODIFIERS="@im=uim"
/opt/local/bin/urxvt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment