Skip to content

Instantly share code, notes, and snippets.

View SORNISITH's full-sized avatar
🎯
Focusing

SOR NISITH SORNISITH

🎯
Focusing
  • MPD
  • cambodia
View GitHub Profile
@SORNISITH
SORNISITH / gist:3904e2208fe4b254a0e7ff125204f6ea
Created May 9, 2026 11:52
Emacs : Config : Minimal Modeline Doom-modeline
(use-package doom-modeline
:ensure t
:init (doom-modeline-mode 1))
(setq doom-modeline-buffer-name nil)
(setq doom-modeline-battery nil)
(setq doom-modeline--flymake nil)
(setq doom-modeline--flycheck nil)
(setq doom-modeline-time nil)
@SORNISITH
SORNISITH / gist:f886bd2b6dc6503fde219d0053457428
Created May 9, 2026 11:51
Emacs : Configs : Auto-revert
;; Auto-revert in Emacs is a feature that automatically updates the
;; contents of a buffer to reflect changes made to the underlying file
;; on disk.
(use-package autorevert
:ensure nil
:commands (auto-revert-mode global-auto-revert-mode)
:hook
(after-init . global-auto-revert-mode)
:init
;; (setq auto-revert-verbose t)