This commit is contained in:
2025-10-19 21:54:29 +08:00
parent a64bc65ad4
commit 788b862e5b
6 changed files with 330 additions and 319 deletions
+22
View File
@@ -0,0 +1,22 @@
;;; core.el -*- lexical-binding: t; -*-
(setq doom-theme 'doom-one)
(setq display-line-numbers-type t)
(setq org-directory "~/org/")
(use-package! super-save
:config
(super-save-mode +1)
(setq super-save-auto-save-when-idle t)
(setq super-save-idle-duration 1))
;; Search bindings for consult-line
(map!
:n "C-s" #'consult-line
:n "M-s" (lambda () (interactive) (consult-line (thing-at-point 'symbol)))
:n "C-S-s" #'consult-line-multi)
(setq-default show-trailing-whitespace t)