diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-09-22 14:52:18 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-09-22 14:52:18 +0100 |
commit | 2bd582e419e502795f35d858375304b842ba09e4 (patch) | |
tree | aa231dba9254770505d26121c14e7cc6f27f3e39 | |
parent | 2b24770fa97db0b00c982727a7b44e5a1234ef2e (diff) | |
download | dotfiles-2bd582e419e502795f35d858375304b842ba09e4.tar.gz dotfiles-2bd582e419e502795f35d858375304b842ba09e4.tar.bz2 dotfiles-2bd582e419e502795f35d858375304b842ba09e4.zip |
(Emacs)+rot13 mode, +use-file-dialog=nil, +dired-dwim-target=t
-rw-r--r-- | Emacs/.config/emacs/config.org | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 6eb8bd4..d343ad2 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -395,6 +395,11 @@ with colouring and a ton of presentations to choose from. (evil telephone-line-evil-tag-segment))) (telephone-line-mode)) #+end_src +** Mouse +Eww who uses a mouse? +#+begin_src emacs-lisp +(setq use-file-dialog nil) +#+end_src * Core packages Packages that are absolutely necessary for the rest of the configuration. These yield core functionality such as keybinding, @@ -1438,6 +1443,19 @@ at last. :config (save-place-mode)) #+end_src +** Rot13 +ROT13 encoding is a pretty simple cipher; fun to make decoders and +encoders for. Emacs has default support for it, to the point where it +can display files with the encoding without changing the underlying +text. That's what this is mainly for. + +#+begin_src emacs-lisp +(use-package rot13 + :straight nil + :general + (mode-leader + "r" #'toggle-rot13-mode)) +#+end_src * Applications Applications are greater than packages; they provide a set of functionality to create an interface in Emacs. Emacs comes with @@ -1626,7 +1644,8 @@ are some corners I'd like to adjust). (dired-mode-hook . dired-hide-details-mode) :init (setq-default dired-listing-switches "-AFBl --group-directories-first" - dired-omit-files "^\\.") + dired-omit-files "^\\." + dired-dwim-target t) (with-eval-after-load "evil-collection" (evil-collection-dired-setup)) :general |