This commit is contained in:
Zelong Kuang
2025-12-14 09:04:11 +11:00
parent 2321eb603b
commit 753ea5ea48
185 changed files with 1608 additions and 18 deletions

View File

@@ -1,6 +1,7 @@
;; -*- lexical-binding: t -*-
(use-package magit
:defer
:bind ("C-c g" . magit-status)
:config
(setq magit-show-long-lines-warning nil))
@@ -15,6 +16,26 @@
;; :config
;; )
(use-package vterm)
(use-package vterm
:defer
:bind ("C-\\" . vterm))
(use-package editorconfig
:diminish
:hook after-init)
(use-package yaml-mode)
;; Fish shell mode and auto-formatting
(use-package fish-mode
:defer t
:commands fish_indent-before-save
:defines eglot-server-programs
:hook (fish-mode . (lambda ()
"Integrate `fish_indent` formatting with Fish shell mode."
(add-hook 'before-save-hook #'fish_indent-before-save)))
:config
(with-eval-after-load 'eglot
(add-to-list 'eglot-server-programs
'(fish-mode . ("fish-lsp" "start")))))
(provide 'init-coding)