about summary refs log tree commit diff
path: root/init-settings.el
diff options
context:
space:
mode:
authorVincent Ambo <vincent@spotify.com>2014-01-30T13·26+0100
committerVincent Ambo <vincent@spotify.com>2014-01-30T13·26+0100
commit8a5115d5b5aa2330f861f735ea5fe72f5667c4bb (patch)
treefee519fcfde9a4e6b6c3847068c210bed9571cd3 /init-settings.el
parent490ea14fadb3dabdf71e6ac55a0a2a1e4f3d9330 (diff)
Some updates
Diffstat (limited to 'init-settings.el')
-rw-r--r--init-settings.el14
1 files changed, 11 insertions, 3 deletions
diff --git a/init-settings.el b/init-settings.el
index 4aaaa622f2..97103a298f 100644
--- a/init-settings.el
+++ b/init-settings.el
@@ -4,8 +4,11 @@
 ; ## Generic settings ##
 
 ; Hide those ugly tool bars
-(tool-bar-mode -1)
-(scroll-bar-mode -1)
+(tool-bar-mode 0)
+(scroll-bar-mode 0)
+
+;; Go away go away
+(setq initial-scratch-message "")
 
 (flx-ido-mode 1)
 (setq ido-use-faces nil)
@@ -45,6 +48,11 @@
       backup-directory-alist `(("." . ,(concat user-emacs-directory "backups")))
       diff-switches "-u")
 
+;; Fix keys on Linux
+(if is-linux
+    (setq x-super-keysym 'meta
+          x-alt-keysym 'alt))
+
 ;; Fix mode line
 (if after-init-time (sml/setup)
   (add-hook 'after-init-hook 'sml/setup))
@@ -103,7 +111,7 @@
 
 (global-hl-line-mode -1)
 
-(set-face-attribute 'default nil :font "Source Code Pro 13")
+(set-face-attribute 'default nil :font "Source Code Pro 12")
 (set-default-font "Source Code Pro 13")
 
 (add-to-list 'after-make-frame-functions 'set-font)