add yaml-mode and trilling space

This commit is contained in:
Andre Henriques 2023-03-28 18:47:09 +01:00
parent bf742ab74c
commit a4d0ff454d

View File

@ -1,7 +1,7 @@
* Looks
** Font
#+begin_src emacs-lisp
(set-frame-font "MonoLisa 18" nil t)
(set-frame-font "MonoLisa 20" nil t)
(set-fontset-font t '(#x1f000 . #x1faff) (font-spec :family "Myne Noto Color Emoji"))
#+end_src
** Themes
@ -129,6 +129,10 @@ Consel
(tool-bar-mode -1)
#+end_src
*** Enable trailling white space
#+begin_src emacs-lisp
(setq-default show-trailing-whitespace t)
#+end_src
** Langs
Set up tree sitter
#+begin_src emacs-lisp
@ -202,6 +206,11 @@ Setup tree sitter based indentation
;;(add-to-list 'auto-mode-alist '("\\.tsx?\\'" . web-mode))
)
#+end_src
*** yaml
#+begin_src emacs-lisp
(use-package yaml-mode
:ensure t)
#+end_src
* Settings
** Backup files
#+begin_src emacs-lisp