Font Changes & Word Wrapping

- Enable word wrapping
- Remove email address variable
- Change source code font to VictorMono Nerd Font Mono
- Change regular font size to 14
- Enable bold and italicized fonts
- Make comments and keywords italicized
- Hide emphasis markers (e.g. /italic/ and *bold*) in org documents
- Remove redundant "Org" from headings within org mode section of README
This commit is contained in:
Sravan Balaji
2021-09-21 14:49:12 -04:00
parent 4d5cf85fac
commit 918d196525
3 changed files with 47 additions and 13 deletions

View File

@@ -1,10 +1,18 @@
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
(setq user-full-name "Sravan Balaji"
user-mail-address "sr98vn@gmail.com")
(setq user-full-name "Sravan Balaji")
(setq doom-font (font-spec :family "FiraCode Nerd Font" :size 13)
doom-variable-pitch-font (font-spec :family "Cantarell" :size 13))
(setq doom-font (font-spec :family "VictorMono Nerd Font Mono" :size 14)
doom-variable-pitch-font (font-spec :family "Cantarell" :size 14)
doom-big-font (font-spec :family "sb/source-code-font" :size 24))
(after! doom-themes
(setq doom-themes-enable-bold t
doom-themes-enable-italic t))
(custom-set-faces!
'(font-lock-comment-face :slant italic)
'(font-lock-keyword-face :slant italic))
(setq doom-theme 'doom-dracula)
@@ -28,6 +36,8 @@
(setq org-src-preserve-indentation nil
org-edit-src-content-indentation 0)
(setq org-hide-emphasis-markers t)
(setq projectile-project-search-path '("~/Projects/" "~/.config/"))
(add-hook! 'web-mode-hook 'prettier-js-mode)