new mastodon settings
This commit is contained in:
parent
d3ed9fc657
commit
d272db56c9
13
init.el
13
init.el
|
@ -81,7 +81,7 @@
|
|||
"Fira Code"))
|
||||
|
||||
;; default size to use when loading fonts
|
||||
(defvar my/font-size 16)
|
||||
(defvar my/font-size 24)
|
||||
|
||||
;; see if a given font exists
|
||||
(defun my/has-font (font)
|
||||
|
@ -518,7 +518,10 @@
|
|||
(use-package mastodon
|
||||
:config
|
||||
(setq mastodon-instance-url "https://merveilles.town"
|
||||
mastodon-active-user "d6"))
|
||||
mastodon-active-user "d6"
|
||||
mastodon-tl--show-avatars t
|
||||
mastodon-media--avatar-height 40
|
||||
mastodon-media--enable-image-caching t))
|
||||
|
||||
|
||||
;; ;; pdf/latex
|
||||
|
@ -544,8 +547,8 @@
|
|||
(setq whitespace-style '(newline tab-mark))
|
||||
(setq-default indent-tabs-mode nil
|
||||
tab-width 4
|
||||
c-basic-offset 4
|
||||
show-trailing-whitespace t)
|
||||
c-basic-offset 4)
|
||||
(add-hook 'prog-mode-hook (lambda () (setq show-trailing-whitespace t)))
|
||||
|
||||
;; handy function to toggle tabs
|
||||
(defun toggle-indent-tabs ()
|
||||
|
@ -578,7 +581,7 @@
|
|||
|
||||
;; spell checking as you type in text-mode
|
||||
;(autoload 'flyspell-mode-on "flyspell" "On-the-fly ispell." t)
|
||||
(add-hook 'text-mode-hook 'flyspell-mode-on)
|
||||
;;(add-hook 'text-mode-hook 'flyspell-mode-on)
|
||||
|
||||
;; use nicer diff colors
|
||||
(defun my/update-diff-colors ()
|
||||
|
|
Loading…
Reference in New Issue