aboutsummaryrefslogtreecommitdiff
path: root/home-manager
diff options
context:
space:
mode:
authorspl3g <spleefer6@yandex.ru>2024-11-17 13:29:26 +0300
committerspl3g <spleefer6@yandex.ru>2025-05-01 14:58:56 +0300
commit0d456a26917483962c5e1b918873ce38179ff93f (patch)
treeea26aad633f1b4fa6ee333377253683f5e5db87f /home-manager
parent399b92d07606385ca8595412b3ba974e92a053c6 (diff)
feat: remove sume keybinds
Diffstat (limited to 'home-manager')
-rw-r--r--home-manager/homeModules/emacs/config.org23
1 files changed, 0 insertions, 23 deletions
diff --git a/home-manager/homeModules/emacs/config.org b/home-manager/homeModules/emacs/config.org
index ce88dcb..d98dae9 100644
--- a/home-manager/homeModules/emacs/config.org
+++ b/home-manager/homeModules/emacs/config.org
@@ -55,7 +55,6 @@
- [[#dired][Dired]]
- [[#bindings][Bindings]]
- [[#media-files][Media files]]
- - [[#casual-dired][Casual dired]]
- [[#sql][Sql]]
- [[#additional-apps][Additional apps]]
- [[#magit][Magit]]
@@ -588,14 +587,8 @@ the precise point where you previously left off.
;; general
(:prefix "C-c"
- "k" 'consult-kmacro
- "m" 'consult-man
"i" 'consult-info)
- ;; one lonely command that i dont use
- (:prefix "C-x"
- "M-:" 'consult-complex-command)
-
;; 'registers' and pop
("M-#" 'consult-register-load
"M-'" 'consult-register-store
@@ -615,7 +608,6 @@ the precise point where you previously left off.
"" '(:ignore t :wk "consult search")
"d" 'consult-fd
"r" 'consult-ripgrep
- "g" 'consult-git-grep
"l" 'consult-line
"L" 'consult-line-multi
"k" 'consult-keep-lines
@@ -695,28 +687,13 @@ the precise point where you previously left off.
("C-h B" . embark-bindings)) ;; alternative for `describe-bindings'
:init
-
- ;; Optionally replace the key help with a completing-read interface
(setq prefix-help-command #'embark-prefix-help-command)
-
- ;; Show the Embark target at point via Eldoc. You may adjust the
- ;; Eldoc strategy, if you want to see the documentation from
- ;; multiple providers. Beware that using this can be a little
- ;; jarring since the message shown in the minibuffer can be more
- ;; than one line, causing the modeline to move up and down:
-
- ;; (add-hook 'eldoc-documentation-functions #'embark-eldoc-first-target)
- ;; (setq eldoc-documentation-strategy #'eldoc-documentation-compose-eagerly)
-
:config
-
- ;; Hide the mode line of the Embark live/completions buffers
(add-to-list 'display-buffer-alist
'("\\`\\*Embark Collect \\(Live\\|Completions\\)\\*"
nil
(window-parameters (mode-line-format . none)))))
- ;; Consult users will also want the embark-consult package.
(use-package embark-consult
:hook (embark-collect-mode . consult-preview-at-point-mode))
#+end_src