doom shenanigans

This commit is contained in:
LinlyBoi
2023-08-19 22:53:09 +03:00
parent caf0305f0e
commit 4a2a784601
3 changed files with 11 additions and 5 deletions

View File

@@ -77,8 +77,9 @@
(setq display-line-numbers-type 'relative)
(setq org-roam-directory (file-truename "~/org"))
;; see https://list.orgmode.org/87r5718ytv.fsf@sputnik.localhost
(after! org
(setq org-roam-directory "~/org/")
(setq org-roam-index-file "~/org/index.org"));; see https://list.orgmode.org/87r5718ytv.fsf@sputnik.localhost
(eval-after-load 'org-list
'(add-hook 'org-checkbox-statistics-hook (function ndk/checkbox-list-complete)))
@@ -111,3 +112,8 @@
;; YAY I LOVE PRESSING s
(remove-hook 'doom-first-input-hook
#'evil-snipe-mode)
;; TABBSS
;; use tab indentation everywhere
(setq-default indent-tabs-mode 'only)
(setq-default tab-width 4) ; Assuming you want your tabs to be four spaces wide
(defvaralias 'c-basic-offset 'tab-width)