summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2023-04-09 14:30:58 +0100
committerYann Herklotz <git@yannherklotz.com>2023-04-09 14:30:58 +0100
commit0cb7e5b7ac0262c7ed88ca9de1010c61af00f791 (patch)
tree0b5fb382e0c30475488bff650f57e882ae0b5b18
parentdc9990e084996c1de7ee41fa293a3f77b9737cea (diff)
downloadymh-emacs-0cb7e5b7ac0262c7ed88ca9de1010c61af00f791.tar.gz
ymh-emacs-0cb7e5b7ac0262c7ed88ca9de1010c61af00f791.zip
Remove outline-mode configuration
-rw-r--r--init.el29
1 files changed, 3 insertions, 26 deletions
diff --git a/init.el b/init.el
index 763977e..df708ea 100644
--- a/init.el
+++ b/init.el
@@ -101,6 +101,9 @@ Should be one of `:white-split', `:modified' or `:default'")
(setq confirm-nonexistent-file-or-buffer nil)
(setq ring-bell-function 'ignore)
(setq sentence-end-double-space t)
+
+ (setq find-file-visit-truename t)
+
(setq dired-dwim-target t)
(setq truncate-partial-width-windows nil)
@@ -1077,32 +1080,6 @@ https://yannherklotz.com"))
(use-package zig-mode
:ensure t)
-(use-package outline
- :bind-keymap ("C-c C-o" . outline-mode-map)
- :bind (:map outline-mode-map
- ("C-a" . outline-show-all)
- ("C-b" . outline-backward-same-level)
- ("C-c" . outline-hide-entry)
- ("C-d" . outline-hide-subtree)
- ("C-e" . outline-show-entry)
- ("C-f" . outline-forward-same-level)
- ("TAB" . outline-show-children)
- ("C-k" . outline-show-branches)
- ("C-l" . outline-hide-leaves)
- ("RET" . outline-insert-heading)
- ("C-n" . outline-next-visible-heading)
- ("C-o" . outline-hide-other)
- ("C-p" . outline-previous-visible-heading)
- ("C-q" . outline-hide-sublevels)
- ("C-s" . outline-show-subtree)
- ("C-t" . outline-hide-body)
- ("C-u" . outline-up-heading)
- ("C-v" . outline-move-subtree-down)
- ("C-^" . outline-move-subtree-up)
- ("@" . outline-mark-subtree)
- ("C-<" . outline-promote)
- ("C->" . outline-demote)))
-
(use-package rust-mode
:ensure t)