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 (use-package corfu
:ensure t :ensure t
:hook (after-init . global-corfu-mode) :hook (after-init . global-corfu-mode)
:bind (:map corfu-map :bind
( :map corfu-map
("<tab>" . corfu-complete)) ("<tab>" . corfu-complete))
:config :config
(setq tab-always-indent 'complete) (setq tab-always-indent 'complete)

View file

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

View file

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