Increase default font size for emacs
This commit is contained in:
@ -3,8 +3,8 @@
|
|||||||
(setq doom-theme 'kaolin-valley-dark)
|
(setq doom-theme 'kaolin-valley-dark)
|
||||||
|
|
||||||
;; Fonts
|
;; Fonts
|
||||||
(setq doom-font (font-spec :family "Go Mono" :size 10))
|
(setq doom-font (font-spec :family "Go Mono" :size 12))
|
||||||
(setq doom-big-font (font-spec :family "Go Mono" :size 16))
|
(setq doom-big-font (font-spec :family "Go Mono" :size 18))
|
||||||
|
|
||||||
(set-frame-parameter nil 'internal-border-width 20) ; applies to the current frame
|
(set-frame-parameter nil 'internal-border-width 20) ; applies to the current frame
|
||||||
;; or
|
;; or
|
||||||
|
|||||||
@ -159,3 +159,20 @@
|
|||||||
(load! "beancount")
|
(load! "beancount")
|
||||||
(require 'beancount)
|
(require 'beancount)
|
||||||
(add-to-list 'auto-mode-alist '("\\.beancount\\'" . beancount-mode))
|
(add-to-list 'auto-mode-alist '("\\.beancount\\'" . beancount-mode))
|
||||||
|
|
||||||
|
(define-derived-mode
|
||||||
|
pandoc-view-mode
|
||||||
|
markdown-mode
|
||||||
|
"pandoc-view-mode"
|
||||||
|
"View pandoc processing of docx file using markdown mode."
|
||||||
|
(erase-buffer)
|
||||||
|
(let* ((pandoc (executable-find "pandoc")))
|
||||||
|
(insert (shell-command-to-string
|
||||||
|
(concat pandoc " --wrap=none " (shell-quote-argument (buffer-file-name)) " -t markdown"))))
|
||||||
|
(not-modified)
|
||||||
|
(read-only-mode t))
|
||||||
|
|
||||||
|
(add-to-list 'auto-mode-alist '("\\.docx\\'" . pandoc-view-mode))
|
||||||
|
|
||||||
|
(remove-hook 'text-mode-hook #'auto-fill-mode)
|
||||||
|
(add-hook 'message-mode-hook #'word-wrap-mode)
|
||||||
|
|||||||
@ -36,8 +36,8 @@ for_window [class="st"] border pixel $thick
|
|||||||
for_window [class="Foliate"] floating enable
|
for_window [class="Foliate"] floating enable
|
||||||
for_window [class="Foliate"] floating_maximum_size 400 x 800
|
for_window [class="Foliate"] floating_maximum_size 400 x 800
|
||||||
|
|
||||||
for_window [class="surf"] floating enable
|
for_window [class="Surf"] floating enable
|
||||||
for_window [class="surf"] floating_maximum_size 400 x 800
|
for_window [class="Surf"] floating_maximum_size 200 x 350
|
||||||
|
|
||||||
# GAP VARIABLES
|
# GAP VARIABLES
|
||||||
set $inner 12
|
set $inner 12
|
||||||
|
|||||||
Reference in New Issue
Block a user