diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-03-09 18:13:26 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-03-09 18:13:26 +0000 |
commit | ec742cbbcd830de66e574258d3d1be30f5d0fb7a (patch) | |
tree | e68db6f99693147a0a23e606b4e674b3f3174bfd /Emacs/.config/emacs/config.org | |
parent | 55c0587735265689809591c9f4199f51a8481ad8 (diff) | |
download | dotfiles-ec742cbbcd830de66e574258d3d1be30f5d0fb7a.tar.gz dotfiles-ec742cbbcd830de66e574258d3d1be30f5d0fb7a.tar.bz2 dotfiles-ec742cbbcd830de66e574258d3d1be30f5d0fb7a.zip |
(Emacs)+nhexl-mode
nhexl-mode improves the inbuilt hexl-mode.
Diffstat (limited to 'Emacs/.config/emacs/config.org')
-rw-r--r-- | Emacs/.config/emacs/config.org | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 4f9b9b4..c8cfd06 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -1707,6 +1707,21 @@ lifting. (with-eval-after-load "eglot" (add-hook 'ada-mode-hook #'eglot)) #+end_src +** NHexl +Hexl-mode is the inbuilt package within Emacs to edit hex and binary +format buffers. Though I doubt many programmers nowadays are +wrangling with binary formats at such a precise level, I like to use +binary formats in my programs sometimes. There are a few problems +with hexl-mode though, including an annoying prompt on +/revert-buffer/. + +Thus, nhexl-mode! It comes with a few other improvements, but I care +not to describe them. Check out the [[https://elpa.gnu.org/packages/nhexl-mode.html][page]] yourself. +#+begin_src emacs-lisp +(use-package nhexl-mode + :straight t + :mode "\\.bin") +#+end_src ** Org *** Org Core Variables Tons of variables for org-mode, including a ton of latex ones. |