Add Modules/Packages/Settings from Personal Config

- Enable treemacs, Jupyter notebook, make, and haskell modules in init.el
- Add projectile search path in config.el
- Add org-auto-tangle, tab-width, and highlight-indent-guides config to config.el
- Add org-auto-tangle, fish-mode, git file modes, and vimrc mode to packages.el
This commit is contained in:
Sravan Balaji
2021-09-16 10:47:24 -04:00
parent 1ff3fd0aa7
commit 82682917cd
4 changed files with 50 additions and 8 deletions

View File

@@ -33,6 +33,7 @@
;; numbers are disabled. For relative line numbers, set this to `relative'.
(setq display-line-numbers-type t)
(setq projectile-project-search-path '("~/Projects/" "~/.config/"))
;; Here are some additional functions/macros that could help you configure Doom:
;;
@@ -50,3 +51,16 @@
;;
;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how
;; they are implemented.
(use-package! org-auto-tangle
:defer t
:hook (org-mode . org-auto-tangle-mode)
:config
(setq org-auto-tangle-default t)
)
(setq-default tab-width 4)
(setq highlight-indent-guides-method 'fill)
(setq highlight-indent-guides-responsive 'stack)
(setq highlight-indent-guides-delay 0)