diff --git a/config/dot_config/doom/config.el b/config/dot_config/doom/config.el index 352845e..da2013b 100644 --- a/config/dot_config/doom/config.el +++ b/config/dot_config/doom/config.el @@ -21,7 +21,7 @@ (setq display-line-numbers-type t) ;; Set Emacs theme -(setq doom-theme 'doom-gruvbox) +(setq doom-theme 'catppuccin) ;; Dashboard (setq dashboard-startup-banner nil) @@ -60,7 +60,7 @@ ;; Org-Agenda (after! org (setq org-agenda-show-all-dates nil - org-agenda-span 2 + org-agenda-span 4 org-agenda-start-day "+0d" org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done) org-agenda-time-grid @@ -76,6 +76,10 @@ ;; Org-Auto-Tangle (setq org-auto-tangle-default nil) +;; Dired +(evil-define-key 'normal dired-mode-map + (kbd "DEL") 'dired-up-directory) + ;; Hooks (add-hook 'org-mode-hook #'org-modern-mode) (add-hook 'org-agenda-finalize-hook #'org-modern-agenda) diff --git a/config/dot_config/doom/init.el b/config/dot_config/doom/init.el index 9766b23..9e9406e 100644 --- a/config/dot_config/doom/init.el +++ b/config/dot_config/doom/init.el @@ -77,7 +77,7 @@ ;;eshell ; the elisp shell that works everywhere ;;shell ; simple shell REPL for Emacs ;;term ; basic terminal emulator for Emacs - ;;vterm ; the best terminal emulation in Emacs + vterm ; the best terminal emulation in Emacs :checkers syntax ; tasing you for every semicolon you forget diff --git a/config/dot_config/doom/packages.el b/config/dot_config/doom/packages.el index 0bb2dbc..e66039e 100644 --- a/config/dot_config/doom/packages.el +++ b/config/dot_config/doom/packages.el @@ -13,8 +13,7 @@ (package! org-modern) (package! org-auto-tangle) (package! org-habit-stats) -(package! dashboard :disable t) -(package! org-journal :disable t) +(package! catppuccin-theme) ;; To install a package directly from a remote git repo, you must specify a ;; `:recipe'. You'll find documentation on what `:recipe' accepts here: