From da9d8ee705edf8396e48d06347b1b56b283da7c9 Mon Sep 17 00:00:00 2001 From: d_m Date: Wed, 6 Sep 2023 08:58:47 -0400 Subject: [PATCH] updates --- init.el | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 585105e..6092e50 100644 --- a/init.el +++ b/init.el @@ -172,6 +172,12 @@ (setq all-the-icons-extension-icon-alist (cons (cons "tal" icon) all-the-icons-extension-icon-alist)))) +;; install newer fonts +(use-package nerd-icons + :config (add-to-list + 'nerd-icons-extension-icon-alist + '("tal" nerd-icons-faicon "nf-fa-recycle" :face nerd-icons-dcyan))) + ;; show function names in modeline (which-function-mode t) @@ -279,6 +285,8 @@ try-complete-lisp-symbol-partially try-complete-lisp-symbol))) +(use-package eglot) + ;; Posframe is a pop-up tool that must be manually installed for dap-mode (use-package posframe :if use-lsp) @@ -561,6 +569,18 @@ ;; emoji support (use-package emojify) +;; i-ching +(use-package i-ching) + +;; dumb-jump? +;; (require 'dumb-jump) +;; (setq dumb-jump-force-searcher 'ag) +;; (add-hook 'xref-backend-functions #'dumb-jump-xref-activate) + +;; shx + +;; shell-pop + ;; local copy in .emacs.d/lisp (require 'etags-select) @@ -650,4 +670,5 @@ ;; If there is more than one, they won't work right. '(gemini-heading-face-1 ((t (:inherit bold :height 1.4)))) '(gemini-heading-face-2 ((t (:inherit bold :height 1.2)))) - '(gemini-heading-face-3 ((t (:inherit bold :height 1.1))))) + '(gemini-heading-face-3 ((t (:inherit bold :height 1.1)))) + '(markdown-code-face ((t nil))))