This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; 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) |