From e7d29a03afaff7ca09eb497579c863a3cd73bae0 Mon Sep 17 00:00:00 2001 From: Sako <78461130+Sakooooo@users.noreply.github.com> Date: Sun, 12 Nov 2023 21:16:27 +0400 Subject: [PATCH] Update emacs.org --- config/emacs/emacs.org | 48 ++++++++++++++++++++++++++---------------- 1 file changed, 30 insertions(+), 18 deletions(-) diff --git a/config/emacs/emacs.org b/config/emacs/emacs.org index b7693374..b0d04d8d 100644 --- a/config/emacs/emacs.org +++ b/config/emacs/emacs.org @@ -193,25 +193,28 @@ https://github.com/seagle0128/.emacs.d #+end_src ** Custom Themes #+begin_src emacs-lisp - (use-package doom-themes - :straight t - :ensure t - :config - ;; Global settings (defaults) - (setq doom-themes-enable-bold t ; if nil, bold is universally disabled - doom-themes-enable-italic t) ; if nil, italics is universally disabled - ;; load the theme - (load-theme 'doom-peacock t) + ;; (use-package doom-themes + ;; :straight t + ;; :ensure t + ;; :config + ;; ;; Global settings (defaults) + ;; (setq doom-themes-enable-bold t ; if nil, bold is universally disabled + ;; doom-themes-enable-italic t) ; if nil, italics is universally disabled + ;; ;; load the theme + ;; (load-theme 'doom-peacock t) - ;; Enable flashing mode-line on errors - (doom-themes-visual-bell-config)) - ;; Enable custom neotree theme (all-the-icons must be installed!) - ;;(doom-themes-neotree-config) - ;; or for treemacs users - ;;(setq doom-themes-treemacs-theme "doom-atom") ; use "doom-colors" for less minimal icon theme - ;;(doom-themes-treemacs-config) - ;; Corrects (and improves) org-mode's native fontification. - ;;(doom-themes-org-config)) + ;; ;; Enable flashing mode-line on errors + ;; (doom-themes-visual-bell-config)) + ;; ;; Enable custom neotree theme (all-the-icons must be installed!) + ;; ;;(doom-themes-neotree-config) + ;; ;; or for treemacs users + ;; ;;(setq doom-themes-treemacs-theme "doom-atom") ; use "doom-colors" for less minimal icon theme + ;; ;;(doom-themes-treemacs-config) + ;; ;; Corrects (and improves) org-mode's native fontification. + ;; ;;(doom-themes-org-config)) + (use-package timu-macos-theme + :straight t + :init (progn (load-theme 'timu-macos))) #+end_src ** Nerd-Fonts (All of the Icons doesnt work for me) #+begin_src emacs-lisp @@ -871,6 +874,15 @@ make sure to setup authinfo :straight t ) #+end_src +*** Better Compile Messages +#+begin_src emacs-lisp + (use-package fancy-compilation + :straight t + :commands (fancy-compilation-mode)) + + (with-eval-after-load 'compile + (fancy-compilation-mode)) +#+end_src *** Snippets #+begin_src emacs-lisp (use-package yasnippet