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
|
(setq all-the-icons-extension-icon-alist
|
||||||
(cons (cons "tal" icon) 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
|
;; show function names in modeline
|
||||||
(which-function-mode t)
|
(which-function-mode t)
|
||||||
|
|
||||||
|
@ -279,6 +285,8 @@
|
||||||
try-complete-lisp-symbol-partially
|
try-complete-lisp-symbol-partially
|
||||||
try-complete-lisp-symbol)))
|
try-complete-lisp-symbol)))
|
||||||
|
|
||||||
|
(use-package eglot)
|
||||||
|
|
||||||
;; Posframe is a pop-up tool that must be manually installed for dap-mode
|
;; Posframe is a pop-up tool that must be manually installed for dap-mode
|
||||||
(use-package posframe
|
(use-package posframe
|
||||||
:if use-lsp)
|
:if use-lsp)
|
||||||
|
@ -561,6 +569,18 @@
|
||||||
;; emoji support
|
;; emoji support
|
||||||
(use-package emojify)
|
(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
|
;; local copy in .emacs.d/lisp
|
||||||
(require 'etags-select)
|
(require 'etags-select)
|
||||||
|
|
||||||
|
@ -650,4 +670,5 @@
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(gemini-heading-face-1 ((t (:inherit bold :height 1.4))))
|
'(gemini-heading-face-1 ((t (:inherit bold :height 1.4))))
|
||||||
'(gemini-heading-face-2 ((t (:inherit bold :height 1.2))))
|
'(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