Compare commits

...

4 Commits

Author SHA1 Message Date
Zelong Kuang
12d3a48c8a Update 2025-12-13 23:00:06 +11:00
Zelong Kuang
5e0502c8f2 Update 2025-12-13 22:46:22 +11:00
Zelong Kuang
2b848a35a7 Add gitignore 2025-12-13 22:46:15 +11:00
Zelong Kuang
c03f2de523 Use doom one 2025-12-13 22:46:09 +11:00
3 changed files with 24 additions and 2 deletions

10
.gitignore vendored
View File

@@ -3,4 +3,14 @@
*.log *.log
tmp/ tmp/
<<<<<<< HEAD
<<<<<<< HEAD
=======
>>>>>>> 6231dc6 (Add gitignore)
=======
=======
>>>>>>> 8ac4896 (Update)
>>>>>>> 70fd802 (Update)
custom.el custom.el

View File

@@ -4,6 +4,11 @@
;; To disable collection of benchmark data after init is done. ;; To disable collection of benchmark data after init is done.
(add-hook 'after-init-hook 'benchmark-init/deactivate)) (add-hook 'after-init-hook 'benchmark-init/deactivate))
(setq tab-width 4)
(setq shell-file-name (executable-find "bash"))
(setq-default vterm-shell (executable-find "fish"))
(setq-default explicit-shell-file-name (executable-find "fish"))
(setf meow-expand-hint-remove-delay 0) (setf meow-expand-hint-remove-delay 0)
(setq duplicate-line-final-position 1) (setq duplicate-line-final-position 1)
@@ -31,7 +36,7 @@
(add-to-list 'default-frame-alist '(width . 100)))) (add-to-list 'default-frame-alist '(width . 100))))
(setq catppuccin-flavor 'catppuccin) (setq catppuccin-flavor 'catppuccin)
(setq doom-theme 'doom-material-dark) (setq doom-theme 'doom-one)
(setq display-line-numbers-type 'relative) (setq display-line-numbers-type 'relative)
(setq org-directory "~/org/") (setq org-directory "~/org/")

View File

@@ -10,6 +10,13 @@
(add-hook 'after-init-hook 'benchmark-init/deactivate)) (add-hook 'after-init-hook 'benchmark-init/deactivate))
#+end_src #+end_src
* My doom config * My doom config
** Some basic config
#+begin_src emacs-lisp
(setq tab-width 4)
(setq shell-file-name (executable-find "bash"))
(setq-default vterm-shell (executable-find "fish"))
(setq-default explicit-shell-file-name (executable-find "fish"))
#+end_src
** Meow ** Meow
#+begin_src emacs-lisp #+begin_src emacs-lisp
(setf meow-expand-hint-remove-delay 0) (setf meow-expand-hint-remove-delay 0)
@@ -43,7 +50,7 @@
(add-to-list 'default-frame-alist '(width . 100)))) (add-to-list 'default-frame-alist '(width . 100))))
(setq catppuccin-flavor 'catppuccin) (setq catppuccin-flavor 'catppuccin)
(setq doom-theme 'doom-material-dark) (setq doom-theme 'doom-one)
(setq display-line-numbers-type 'relative) (setq display-line-numbers-type 'relative)
(setq org-directory "~/org/") (setq org-directory "~/org/")
#+end_src #+end_src