Improve look for phoenix on train

This commit is contained in:
Tom Willemse 2013-04-12 09:06:24 +02:00
parent 55ca176cd5
commit 8ae90ffbd1
2 changed files with 25 additions and 37 deletions

View file

@ -20,37 +20,37 @@ urxvt.keysym.M-s: perl:keyboard-select:search
urxvt.keysym.M-u: perl:url-select:select_next urxvt.keysym.M-u: perl:url-select:select_next
urxvt.font: xft:Envy Code R:weight=medium:pixelsize=18 urxvt.font: xft:Envy Code R:weight=medium:pixelsize=12
urxvt.boldFont: xft:Envy Code R:weight=bold:pixelsize=18 urxvt.boldFont: xft:Envy Code R:weight=bold:pixelsize=12
urxvt.italicFont: xft:Envy Code R:slant=italic:pixelsize=18 urxvt.italicFont: xft:Envy Code R:slant=italic:pixelsize=12
urxvt.depth: 32 urxvt.depth: 32
urxvt.background: #111113 ! urxvt.background: #111113
urxvt.foreground: #eeeeec ! urxvt.foreground: #eeeeec
urxvt.color0: #111113 ! urxvt.color0: #111113
urxvt.color8: #eeeeec ! urxvt.color8: #eeeeec
urxvt.color1: #734a4a ! urxvt.color1: #734a4a
urxvt.color9: #bf7d7d ! urxvt.color9: #bf7d7d
urxvt.color2: #52734a ! urxvt.color2: #52734a
urxvt.color10: #8abf6d ! urxvt.color10: #8abf6d
urxvt.color3: #6b734a ! urxvt.color3: #6b734a
urxvt.color11: #b2bf6d ! urxvt.color11: #b2bf6d
urxvt.color4: #4a5b73 ! urxvt.color4: #4a5b73
urxvt.color12: #6d97bf ! urxvt.color12: #6d97bf
urxvt.color5: #6b4a73 ! urxvt.color5: #6b4a73
urxvt.color13: #b27dbf ! urxvt.color13: #b27dbf
urxvt.color6: #4a7373 ! urxvt.color6: #4a7373
urxvt.color14: #7dbfbf ! urxvt.color14: #7dbfbf
urxvt.color7: #222224 ! urxvt.color7: #222224
urxvt.color15: #a5a5a4 ! urxvt.color15: #a5a5a4
Xft.antialias: true Xft.antialias: true
Xft.rgba: rgb Xft.rgba: rgb
@ -61,17 +61,11 @@ Xft.hintstyle: hintslight
Emacs.menuBar: off Emacs.menuBar: off
Emacs.toolbar: off Emacs.toolbar: off
Emacs.useXIM: off Emacs.useXIM: off
Emacs.background: #111113
Emacs.borderWidth: 0 Emacs.borderWidth: 0
Emacs.font: Envy Code R-13 Emacs.font: Envy Code R-10
Emacs.foreground: #eeeeec
Emacs.internalBorder: 0 Emacs.internalBorder: 0
Emacs.paneFont: Envy Code R-13 Emacs.paneFont: Envy Code R-10
Emacs.pointerColor: #eeeeec Emacs*menu*font: Envy Code R-10
Emacs*menu*font: Envy Code R-13
Emacs*menu*foreground: #eeeeec
Emacs*menu*background: #222224
Emacs*menu*buttonForeground: #a5a5a4
Emacs*menu*verticalSpacing: 0 Emacs*menu*verticalSpacing: 0
Emacs*menu*shadowThickness: 1 Emacs*menu*shadowThickness: 1
Emacs*menu*margin: 0 Emacs*menu*margin: 0

View file

@ -13,9 +13,6 @@ functionality deferred to a point after Emacs has initialized and
package.el is loaded anyway." package.el is loaded anyway."
`(add-hook 'emacs-startup-hook #'(lambda () ,@body))) `(add-hook 'emacs-startup-hook #'(lambda () ,@body)))
;;; Load my very own theme.
(eval-after-init (load-theme 'yoshi t))
;;; Add some project directories and my site-lisp directory to the ;;; Add some project directories and my site-lisp directory to the
;;; load path to make it easy to (auto)load them. ;;; load path to make it easy to (auto)load them.
(mapc #'(lambda (dir) (mapc #'(lambda (dir)
@ -358,7 +355,7 @@ Also change directories to current working directory."
(vertical-scroll-bars . nil) (vertical-scroll-bars . nil)
(menu-bar-lines . nil) (menu-bar-lines . nil)
(tool-bar-lines . nil) (tool-bar-lines . nil)
(font . "Envy Code R:pixelsize=18"))) (font . "Envy Code R:pixelsize=12")))
(setq elnode-do-init nil) (setq elnode-do-init nil)
(setq fci-rule-color "darkred") (setq fci-rule-color "darkred")
(setq frame-title-format '(:eval (concat "emacs: " (buffer-name)))) (setq frame-title-format '(:eval (concat "emacs: " (buffer-name))))
@ -453,9 +450,6 @@ Also change directories to current working directory."
(add-hook 'write-file-hooks 'oni:write-file-func) (add-hook 'write-file-hooks 'oni:write-file-func)
(add-hook 'yas-minor-mode-hook 'oni:yas-minor-mode-func) (add-hook 'yas-minor-mode-hook 'oni:yas-minor-mode-func)
(define-key key-translation-map (kbd "C-j") (kbd "C-l"))
(define-key key-translation-map (kbd "C-l") (kbd "C-j"))
(global-set-key (kbd "'") 'oni:self-insert-dwim) (global-set-key (kbd "'") 'oni:self-insert-dwim)
(global-set-key (kbd "<XF86HomePage>") 'oni:raise-scratch) (global-set-key (kbd "<XF86HomePage>") 'oni:raise-scratch)
(global-set-key (kbd "<XF86Mail>") 'gnus) (global-set-key (kbd "<XF86Mail>") 'gnus)