reformat various files, removing tabs

This commit is contained in:
Gered 2024-12-03 11:16:34 -05:00
parent f3a6bfa427
commit 958780da2d
6 changed files with 18 additions and 15 deletions

View file

@ -21,7 +21,8 @@
(use-package corfu
:ensure t
:hook (after-init . global-corfu-mode)
:bind (:map corfu-map
:bind
( :map corfu-map
("<tab>" . corfu-complete))
:config
(setq tab-always-indent 'complete)

View file

@ -1,3 +1,4 @@
(use-package magit
:ensure t
:bind (("C-x g" . magit-status)))
:bind
(("C-x g" . magit-status)))

View file

@ -77,7 +77,8 @@
(use-package helpful
:ensure t
:bind (([remap describe-function] . helpful-callable)
:bind
(([remap describe-function] . helpful-callable)
([remap describe-variable] . helpful-variable)
([remap describe-key] . helpful-key)
([remap describe-command] . helpful-command)))