add catppuccin theme, increase agenda size, add dired stuff

This commit is contained in:
Inhji 2024-02-10 23:01:49 +05:45
parent 2c17854f8d
commit 3155adb160
3 changed files with 8 additions and 5 deletions

View File

@ -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)

View File

@ -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

View File

@ -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: