diff --git a/init.el b/init.el index 39dd2fc..cad47a2 100644 --- a/init.el +++ b/init.el @@ -4,13 +4,16 @@ ;; Convenient functions (load "~/.emacs.d/functions.el") +;; Tab width +(setq-default tab-width 4) + ;; Remove useless stuff (menu-bar-mode 0) (tool-bar-mode 0) (scroll-bar-mode 0) ;; Appearance -(set-frame-font "DejaVu Sans Mono 10") +(set-frame-font "Terminus 12") (set-face-italic 'font-lock-comment-face nil) ; disable italics ; theme set in packages.el (global-linum-mode) @@ -63,6 +66,12 @@ (setq c-default-style "linux" c-basic-offset 4) +;; Disable bold fonts +(mapc + (lambda (face) + (set-face-attribute face nil :weight 'normal)) + (face-list)) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -72,7 +81,8 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(package-selected-packages - '(go-mode tao-themes tao-theme almost-mono-themes use-package))) + (quote + (go-mode tao-themes tao-theme almost-mono-themes use-package)))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful.