Compare commits
10 Commits
55eecbac93
...
bacbd9b58d
Author | SHA1 | Date | |
---|---|---|---|
bacbd9b58d | |||
855b1cf24d | |||
272a759bdf | |||
4296030911 | |||
3660fba6e1 | |||
3d85ceaed6 | |||
50c78b3a0e | |||
3c3ae72a63 | |||
5546b458fb | |||
b0955330a9 |
59
init.el
59
init.el
@ -274,7 +274,6 @@ DOCSTRING is an optional form that is discarded upon expansion."
|
|||||||
;; General configuration
|
;; General configuration
|
||||||
(frame-title-format '("%b — Emacs") "Set frame title to buffer name")
|
(frame-title-format '("%b — Emacs") "Set frame title to buffer name")
|
||||||
(truncate-lines t "Truncate lines instead of wrapping")
|
(truncate-lines t "Truncate lines instead of wrapping")
|
||||||
(kill-whole-line t "Include newline character when killing a line")
|
|
||||||
(context-menu-mode t "Enable global context menu support")
|
(context-menu-mode t "Enable global context menu support")
|
||||||
(message-truncate-lines t "Truncate messages in the echo area")
|
(message-truncate-lines t "Truncate messages in the echo area")
|
||||||
(cursor-in-non-selected-windows nil "Hide cursor in inactive windows")
|
(cursor-in-non-selected-windows nil "Hide cursor in inactive windows")
|
||||||
@ -403,6 +402,15 @@ DOCSTRING is an optional form that is discarded upon expansion."
|
|||||||
:mode
|
:mode
|
||||||
("\\.cppm\\'" . c++-ts-mode))
|
("\\.cppm\\'" . c++-ts-mode))
|
||||||
|
|
||||||
|
;; ---------------------------------- ;;
|
||||||
|
;; cmake-ts-mode
|
||||||
|
;; ---------------------------------- ;;
|
||||||
|
|
||||||
|
(editor-feature cmake-ts-mode
|
||||||
|
"Major mode for CMake files, using the Tree-sitter parsing library."
|
||||||
|
:mode
|
||||||
|
("\\CMakeLists.txt\\'" . cmake-ts-mode))
|
||||||
|
|
||||||
;; ---------------------------------- ;;
|
;; ---------------------------------- ;;
|
||||||
;; compile
|
;; compile
|
||||||
;; ---------------------------------- ;;
|
;; ---------------------------------- ;;
|
||||||
@ -442,20 +450,23 @@ DOCSTRING is an optional form that is discarded upon expansion."
|
|||||||
eglot-hover-eldoc-function))
|
eglot-hover-eldoc-function))
|
||||||
(eglot-inlay-hints-mode -1))
|
(eglot-inlay-hints-mode -1))
|
||||||
:config
|
:config
|
||||||
|
(add-to-list 'eglot-server-programs `(svelte-mode . ("svelteserver" "--stdio")))
|
||||||
;; Remove the mode-line segment that Eglot adds
|
;; Remove the mode-line segment that Eglot adds
|
||||||
(setq mode-line-misc-info (assoc-delete-all 'eglot--managed-mode mode-line-misc-info))
|
(setq mode-line-misc-info (assoc-delete-all 'eglot--managed-mode mode-line-misc-info))
|
||||||
:hook
|
:hook
|
||||||
(c-ts-base-mode-hook . eglot-ensure)
|
(c-ts-base-mode-hook . eglot-ensure)
|
||||||
|
(gdscript-mode-hook . eglot-ensure)
|
||||||
(js-ts-mode-hook . eglot-ensure)
|
(js-ts-mode-hook . eglot-ensure)
|
||||||
(rust-ts-mode-hook . eglot-ensure)
|
(rust-ts-mode-hook . eglot-ensure)
|
||||||
|
(svelte-mode-hook . eglot-ensure)
|
||||||
(typescript-mode-hook . eglot-ensure)
|
(typescript-mode-hook . eglot-ensure)
|
||||||
(gdscript-mode-hook . eglot-ensure)
|
|
||||||
(eglot-managed-mode-hook . user/set-up-eglot)
|
(eglot-managed-mode-hook . user/set-up-eglot)
|
||||||
:bind
|
:bind
|
||||||
(:map eglot-mode-map
|
(:map eglot-mode-map
|
||||||
("C-c \\" . eglot-format-buffer)
|
("C-c \\" . eglot-format-buffer)
|
||||||
("C-c q" . eglot-code-action-quickfix)
|
("C-c q" . eglot-code-action-quickfix)
|
||||||
("C-c C-q" . eglot-code-actions)))
|
("C-c C-q" . eglot-code-actions)
|
||||||
|
("M-s r ." . eglot-rename)))
|
||||||
|
|
||||||
;; ---------------------------------- ;;
|
;; ---------------------------------- ;;
|
||||||
;; elec-pair
|
;; elec-pair
|
||||||
@ -977,16 +988,22 @@ DOCSTRING is an optional form that is discarded upon expansion."
|
|||||||
(external-package markdown-mode
|
(external-package markdown-mode
|
||||||
"Major mode for Markdown files."
|
"Major mode for Markdown files."
|
||||||
:mode
|
:mode
|
||||||
(("\\.md\\'" . markdown-mode)))
|
("\\.md\\'" . markdown-mode))
|
||||||
|
|
||||||
(external-package web-mode
|
(external-package svelte-mode
|
||||||
"Major mode for web templates."
|
"Major mode for Svelte files."
|
||||||
:custom
|
|
||||||
(web-mode-markup-indent-offset 2 "Use 2 spaces instead of 4 for indenting HTML elements")
|
|
||||||
(web-mode-enable-auto-quoting nil "Do not automatically insert quotes after HTML attributes")
|
|
||||||
:mode
|
:mode
|
||||||
(("\\.php\\'" . web-mode)
|
("\\.svelte\\'" . svelte-mode))
|
||||||
("\\.html\\'" . web-mode)))
|
|
||||||
|
;; (external-package web-mode
|
||||||
|
;; "Major mode for web templates."
|
||||||
|
;; :custom
|
||||||
|
;; (web-mode-markup-indent-offset 2 "Use 2 spaces instead of 4 for indenting HTML elements")
|
||||||
|
;; (web-mode-enable-auto-quoting nil "Do not automatically insert quotes after HTML attributes")
|
||||||
|
;; :mode
|
||||||
|
;; ("\\.php\\'" . web-mode)
|
||||||
|
;; ("\\.html\\'" . web-mode)
|
||||||
|
;; ("\\.svelte\\'" . web-mode))
|
||||||
|
|
||||||
;; ---------------------------------- ;;
|
;; ---------------------------------- ;;
|
||||||
;; anzu
|
;; anzu
|
||||||
@ -1141,7 +1158,7 @@ DOCSTRING is an optional form that is discarded upon expansion."
|
|||||||
:bind
|
:bind
|
||||||
(:map clj-refactor-map
|
(:map clj-refactor-map
|
||||||
("C-c ." . cljr-find-usages)
|
("C-c ." . cljr-find-usages)
|
||||||
("M-s M-r ." . cljr-rename-symbol)))
|
("M-s r ." . cljr-rename-symbol)))
|
||||||
|
|
||||||
;; ---------------------------------- ;;
|
;; ---------------------------------- ;;
|
||||||
;; consult
|
;; consult
|
||||||
@ -1227,6 +1244,15 @@ DOCSTRING is an optional form that is discarded upon expansion."
|
|||||||
(global-diff-hl-mode)
|
(global-diff-hl-mode)
|
||||||
(diff-hl-flydiff-mode))
|
(diff-hl-flydiff-mode))
|
||||||
|
|
||||||
|
;; ---------------------------------- ;;
|
||||||
|
;; editorconfig-mode
|
||||||
|
;; ---------------------------------- ;;
|
||||||
|
|
||||||
|
(external-package editorconfig
|
||||||
|
"Reads EditorConfig files and applies appropriate formatting settings for projects."
|
||||||
|
:config
|
||||||
|
(editorconfig-mode))
|
||||||
|
|
||||||
;; ---------------------------------- ;;
|
;; ---------------------------------- ;;
|
||||||
;; eldoc-frame
|
;; eldoc-frame
|
||||||
;; ---------------------------------- ;;
|
;; ---------------------------------- ;;
|
||||||
@ -1335,7 +1361,7 @@ DOCSTRING is an optional form that is discarded upon expansion."
|
|||||||
"Enables support for mapping characters to ligatures."
|
"Enables support for mapping characters to ligatures."
|
||||||
:config
|
:config
|
||||||
(ligature-set-ligatures
|
(ligature-set-ligatures
|
||||||
'prog-mode
|
'(sgml-mode prog-mode)
|
||||||
'(;; This set of ligatures is for Fira Code, but
|
'(;; This set of ligatures is for Fira Code, but
|
||||||
;; should work for most any font with ligatures:
|
;; should work for most any font with ligatures:
|
||||||
;; && &&&
|
;; && &&&
|
||||||
@ -1389,6 +1415,7 @@ DOCSTRING is an optional form that is discarded upon expansion."
|
|||||||
("0" (rx (and "x" (+ (in "A-F" "a-f" "0-9")))))
|
("0" (rx (and "x" (+ (in "A-F" "a-f" "0-9")))))
|
||||||
"Fl" "Tl" "fi" "fj" "fl" "ft"))
|
"Fl" "Tl" "fi" "fj" "fl" "ft"))
|
||||||
:hook
|
:hook
|
||||||
|
(sgml-mode-hook . ligature-mode)
|
||||||
(prog-mode-hook . ligature-mode))
|
(prog-mode-hook . ligature-mode))
|
||||||
|
|
||||||
;; ---------------------------------- ;;
|
;; ---------------------------------- ;;
|
||||||
@ -1620,7 +1647,7 @@ DOCSTRING is an optional form that is discarded upon expansion."
|
|||||||
(when (eq (car-safe elem) 'i)
|
(when (eq (car-safe elem) 'i)
|
||||||
(if-let (template (alist-get (cadr elem) (tempel--templates)))
|
(if-let (template (alist-get (cadr elem) (tempel--templates)))
|
||||||
(cons 'l (user/tempel-subst-names template (caddr elem)))
|
(cons 'l (user/tempel-subst-names template (caddr elem)))
|
||||||
(message "tempel-include: Template not found: %s" (cadr elem)))))
|
(message "user/tempel-include: Template not found: %s" (cadr elem)))))
|
||||||
(defun user/tempel-setup-capf ()
|
(defun user/tempel-setup-capf ()
|
||||||
"Add `tempel-complete' to `completion-at-point-functions' (buffer-local).
|
"Add `tempel-complete' to `completion-at-point-functions' (buffer-local).
|
||||||
If `tempel-complete' is already a member of `completion-at-point-functions', it
|
If `tempel-complete' is already a member of `completion-at-point-functions', it
|
||||||
@ -1639,13 +1666,15 @@ is promoted to the beginning of the list of hooked functions."
|
|||||||
:hook
|
:hook
|
||||||
(prog-mode-hook . user/tempel-setup-capf)
|
(prog-mode-hook . user/tempel-setup-capf)
|
||||||
(text-mode-hook . user/tempel-setup-capf)
|
(text-mode-hook . user/tempel-setup-capf)
|
||||||
|
(conf-mode-hook . user/tempel-setup-capf)
|
||||||
(eglot-managed-mode-hook . user/tempel-setup-capf)
|
(eglot-managed-mode-hook . user/tempel-setup-capf)
|
||||||
:bind
|
:bind
|
||||||
(:map tempel-map
|
(:map tempel-map
|
||||||
("RET" . tempel-done)
|
("RET" . tempel-done)
|
||||||
("<tab>" . tempel-next)
|
("<tab>" . tempel-next)
|
||||||
("<backtab>" . tempel-previous)
|
("<backtab>" . tempel-previous)
|
||||||
("C-g" . tempel-abort)))
|
("C-g" . tempel-abort)
|
||||||
|
("C-k" . tempel-abort)))
|
||||||
|
|
||||||
;; ---------------------------------- ;;
|
;; ---------------------------------- ;;
|
||||||
;; treesit-auto
|
;; treesit-auto
|
||||||
|
Loading…
Reference in New Issue
Block a user