summaryrefslogtreecommitdiff
path: root/.config/emacs/modules/bd--essentials.el
diff options
context:
space:
mode:
authorbd <bdunahu@colostate.edu>2024-02-26 01:00:28 -0700
committerbd <bdunahu@colostate.edu>2024-02-26 01:00:28 -0700
commit7180fc056ac8b0c371f4bb72e6200f5c2004fd9e (patch)
treec0bd5eafa25430e6a687f65435cd56a314622dac /.config/emacs/modules/bd--essentials.el
parentb03b6be9a9f6711dadc2339a0f797d06daef16f4 (diff)
Add consult
Diffstat (limited to '.config/emacs/modules/bd--essentials.el')
-rw-r--r--.config/emacs/modules/bd--essentials.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/emacs/modules/bd--essentials.el b/.config/emacs/modules/bd--essentials.el
index 7b046f7..c652f68 100644
--- a/.config/emacs/modules/bd--essentials.el
+++ b/.config/emacs/modules/bd--essentials.el
@@ -19,7 +19,7 @@
;; basic editing
(setopt kill-whole-line t
sentence-end-double-space nil)
-(setq-default tab-width 4)
+(setq-default tab-width 8)
(global-hl-line-mode 1)
(global-visual-line-mode t)
@@ -32,7 +32,7 @@ on save."
(defun bd/cleanup-buffer ()
(interactive)
(delete-trailing-whitespace)
- ;; (tabify (point-min) (point-max))
+ (untabify (point-min) (point-max))
(indent-region (point-min) (point-max)))
(setopt next-line-add-newlines t)