diff options
author | bd <bdunahu@gmail.com> | 2024-01-04 18:47:26 -0700 |
---|---|---|
committer | bd <bdunahu@gmail.com> | 2024-01-04 18:47:26 -0700 |
commit | 8ec141c3c2b1e5ff80632ca58c7c62cae8f357d0 (patch) | |
tree | 6bad9ed6b6c5adbe888b0dc590e50b8e1df9fb4e /.config/emacs/init.el | |
parent | bc930046e3c7413ffb8463904cbd053c1c9d2874 (diff) |
Removed all bindings prefixed with C-z, moved more to default.
Diffstat (limited to '.config/emacs/init.el')
-rw-r--r-- | .config/emacs/init.el | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 0fe8ac8..d446b10 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -7,9 +7,6 @@ (load (expand-file-name "$HOME/.config/emacs/bd-default.el")) -(defun clamp (lower-bound upper-bound value) - (max lower-bound (min value upper-bound))) - (load (expand-file-name "$HOME/.config/emacs/bd-org.el")) (load (expand-file-name "$HOME/.config/emacs/bd-emms.el")) (load (expand-file-name "$HOME/.config/emacs/bd-development.el")) @@ -21,18 +18,12 @@ erc-autojoin-channels-alist '(("irc.libera.chat" "#parabola" "#emacs" "#guix"))) (defalias 'erc 'erc-tls) -;; dired -(setopt dired-listing-switches "-alh") - (use-package vertico :init (vertico-mode) :custom (vertico-cycle t)) -;; dired -(global-set-key (kbd "C-z d") 'dired-jump) - (load (expand-file-name "$HOME/.config/emacs/bd-wm.el")) (load (expand-file-name "$HOME/.config/emacs/bd-mode-and-themes.el")) |