updates
This commit is contained in:
parent
935d33bc40
commit
da9d8ee705
23
init.el
23
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))))
|
||||
|
|
Loading…
Reference in New Issue