diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-07 23:56:57 +0530 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-07 23:56:57 +0530 |
commit | 4f2ec316e45810e428a1d8f8750fff52a9e7d992 (patch) | |
tree | 5d17bd4225b1bb3b435b0dc87284eaac7797e4ac | |
parent | 4845453a695de69d7290f3c12313081d937012f1 (diff) | |
download | dotfiles-4f2ec316e45810e428a1d8f8750fff52a9e7d992.tar.gz dotfiles-4f2ec316e45810e428a1d8f8750fff52a9e7d992.tar.bz2 dotfiles-4f2ec316e45810e428a1d8f8750fff52a9e7d992.zip |
(Emacs/config|core)+some defers
-rw-r--r-- | Emacs/.config/emacs/config.org | 3 | ||||
-rw-r--r-- | Emacs/.config/emacs/core.org | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 1635eab..27c20d4 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -40,7 +40,7 @@ Set the encoding to UTF-8-Unix by default. (setq-default buffer-file-coding-system 'utf-8-unix save-buffer-coding-system 'utf-8-unix)) #+end_src -** File saves and custom file + Setup automatic saving for files (in case of system failure) and auto-revert-mode (which refreshes the buffer on changes to the underlying file). Along with that, set the custom-file (which holds @@ -680,7 +680,6 @@ thing faster and within Emacs lisp. ~rgrep~ is useful though. *** rg #+begin_src emacs-lisp (use-package rg - :after grep :display ("^\\*\\*ripgrep\\*\\*" (display-buffer-at-bottom display-buffer-reuse-window) diff --git a/Emacs/.config/emacs/core.org b/Emacs/.config/emacs/core.org index 2e80e8a..b0bc70d 100644 --- a/Emacs/.config/emacs/core.org +++ b/Emacs/.config/emacs/core.org @@ -179,7 +179,7 @@ Setup the evil package, with some opinionated keybindings: - Use 'T' character as an action for transposing objects #+begin_src emacs-lisp (use-package evil - :demand t + :defer t :hook (after-init-hook . evil-mode) :general (leader @@ -652,6 +652,7 @@ effectively. #+begin_src emacs-lisp (use-package tab-bar + :defer t :straight nil :init (setq tab-bar-show 1) |