diable bold text

This commit is contained in:
opFez 2020-12-10 22:42:07 +01:00
parent e994d24c39
commit 61e1d7d188
1 changed files with 12 additions and 2 deletions

14
init.el
View File

@ -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.