summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-04-12 09:06:24 +0200
committerGravatar Tom Willemse2013-04-12 09:06:24 +0200
commit8ae90ffbd18d4312806e11cdda99e3dadcc9bf57 (patch)
tree643707760d0f65dbea5dac25e4b76b467b0336a9
parent55ca176cd5022d2fc35bc2c06d5f9a764315f238 (diff)
downloaddotfiles-8ae90ffbd18d4312806e11cdda99e3dadcc9bf57.tar.gz
dotfiles-8ae90ffbd18d4312806e11cdda99e3dadcc9bf57.zip
Improve look for phoenix on train
-rw-r--r--.Xdefaults54
-rw-r--r--emacs/init.el8
2 files changed, 25 insertions, 37 deletions
diff --git a/.Xdefaults b/.Xdefaults
index cce9f2f..3b7e385 100644
--- a/.Xdefaults
+++ b/.Xdefaults
@@ -20,37 +20,37 @@ urxvt.keysym.M-s: perl:keyboard-select:search
urxvt.keysym.M-u: perl:url-select:select_next
-urxvt.font: xft:Envy Code R:weight=medium:pixelsize=18
-urxvt.boldFont: xft:Envy Code R:weight=bold:pixelsize=18
-urxvt.italicFont: xft:Envy Code R:slant=italic:pixelsize=18
+urxvt.font: xft:Envy Code R:weight=medium:pixelsize=12
+urxvt.boldFont: xft:Envy Code R:weight=bold:pixelsize=12
+urxvt.italicFont: xft:Envy Code R:slant=italic:pixelsize=12
urxvt.depth: 32
-urxvt.background: #111113
-urxvt.foreground: #eeeeec
+! urxvt.background: #111113
+! urxvt.foreground: #eeeeec
-urxvt.color0: #111113
-urxvt.color8: #eeeeec
+! urxvt.color0: #111113
+! urxvt.color8: #eeeeec
-urxvt.color1: #734a4a
-urxvt.color9: #bf7d7d
+! urxvt.color1: #734a4a
+! urxvt.color9: #bf7d7d
-urxvt.color2: #52734a
-urxvt.color10: #8abf6d
+! urxvt.color2: #52734a
+! urxvt.color10: #8abf6d
-urxvt.color3: #6b734a
-urxvt.color11: #b2bf6d
+! urxvt.color3: #6b734a
+! urxvt.color11: #b2bf6d
-urxvt.color4: #4a5b73
-urxvt.color12: #6d97bf
+! urxvt.color4: #4a5b73
+! urxvt.color12: #6d97bf
-urxvt.color5: #6b4a73
-urxvt.color13: #b27dbf
+! urxvt.color5: #6b4a73
+! urxvt.color13: #b27dbf
-urxvt.color6: #4a7373
-urxvt.color14: #7dbfbf
+! urxvt.color6: #4a7373
+! urxvt.color14: #7dbfbf
-urxvt.color7: #222224
-urxvt.color15: #a5a5a4
+! urxvt.color7: #222224
+! urxvt.color15: #a5a5a4
Xft.antialias: true
Xft.rgba: rgb
@@ -61,17 +61,11 @@ Xft.hintstyle: hintslight
Emacs.menuBar: off
Emacs.toolbar: off
Emacs.useXIM: off
-Emacs.background: #111113
Emacs.borderWidth: 0
-Emacs.font: Envy Code R-13
-Emacs.foreground: #eeeeec
+Emacs.font: Envy Code R-10
Emacs.internalBorder: 0
-Emacs.paneFont: Envy Code R-13
-Emacs.pointerColor: #eeeeec
-Emacs*menu*font: Envy Code R-13
-Emacs*menu*foreground: #eeeeec
-Emacs*menu*background: #222224
-Emacs*menu*buttonForeground: #a5a5a4
+Emacs.paneFont: Envy Code R-10
+Emacs*menu*font: Envy Code R-10
Emacs*menu*verticalSpacing: 0
Emacs*menu*shadowThickness: 1
Emacs*menu*margin: 0
diff --git a/emacs/init.el b/emacs/init.el
index 8e7fd45..9198675 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -13,9 +13,6 @@ functionality deferred to a point after Emacs has initialized and
package.el is loaded anyway."
`(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
;;; load path to make it easy to (auto)load them.
(mapc #'(lambda (dir)
@@ -358,7 +355,7 @@ Also change directories to current working directory."
(vertical-scroll-bars . nil)
(menu-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 fci-rule-color "darkred")
(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 '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 "<XF86HomePage>") 'oni:raise-scratch)
(global-set-key (kbd "<XF86Mail>") 'gnus)