some small update

This commit is contained in:
Chris Cochrun 2022-12-16 16:18:56 -06:00
parent d135f25860
commit 064e0d4881
3 changed files with 9 additions and 1 deletions

View file

@ -563,6 +563,7 @@ Org-Mode needs to be loaded pretty high in the file so that we are ensuring thin
Let's start by creating a self contained function of what I'd like started on every org buffer.
#+begin_src emacs-lisp
(setq lpr-command "lpr -o sides=two-sided-long-edge -# ")
(defun chris/org-mode-setup ()
(interactive)
(org-indent-mode +1)
@ -1001,6 +1002,8 @@ Org-Superstar makes the stars at the beginning of the line in =org-mode= a lot p
#+BEGIN_SRC emacs-lisp
(use-package org-modern
:config
(setq org-modern-timestamp nil)
(custom-set-faces
'(org-modern-tag ((t :background "#9aedfe" :foreground "#282a36")))
@ -2096,6 +2099,7 @@ I'd like to start learning and using rust if I can.
For developing websites, I like to use web-mode
#+begin_src emacs-lisp
(use-package web-mode
:mode "\\.html\\'"
:config
(add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.phtml?\\'" . web-mode))