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) (setq display-line-numbers-type t)
;; Set Emacs theme ;; Set Emacs theme
(setq doom-theme 'doom-gruvbox) (setq doom-theme 'catppuccin)
;; Dashboard ;; Dashboard
(setq dashboard-startup-banner nil) (setq dashboard-startup-banner nil)
@ -60,7 +60,7 @@
;; Org-Agenda ;; Org-Agenda
(after! org (setq (after! org (setq
org-agenda-show-all-dates nil org-agenda-show-all-dates nil
org-agenda-span 2 org-agenda-span 4
org-agenda-start-day "+0d" org-agenda-start-day "+0d"
org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done) org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done)
org-agenda-time-grid org-agenda-time-grid
@ -76,6 +76,10 @@
;; Org-Auto-Tangle ;; Org-Auto-Tangle
(setq org-auto-tangle-default nil) (setq org-auto-tangle-default nil)
;; Dired
(evil-define-key 'normal dired-mode-map
(kbd "DEL") 'dired-up-directory)
;; Hooks ;; Hooks
(add-hook 'org-mode-hook #'org-modern-mode) (add-hook 'org-mode-hook #'org-modern-mode)
(add-hook 'org-agenda-finalize-hook #'org-modern-agenda) (add-hook 'org-agenda-finalize-hook #'org-modern-agenda)

View File

@ -77,7 +77,7 @@
;;eshell ; the elisp shell that works everywhere ;;eshell ; the elisp shell that works everywhere
;;shell ; simple shell REPL for Emacs ;;shell ; simple shell REPL for Emacs
;;term ; basic terminal emulator for Emacs ;;term ; basic terminal emulator for Emacs
;;vterm ; the best terminal emulation in Emacs vterm ; the best terminal emulation in Emacs
:checkers :checkers
syntax ; tasing you for every semicolon you forget syntax ; tasing you for every semicolon you forget

View File

@ -13,8 +13,7 @@
(package! org-modern) (package! org-modern)
(package! org-auto-tangle) (package! org-auto-tangle)
(package! org-habit-stats) (package! org-habit-stats)
(package! dashboard :disable t) (package! catppuccin-theme)
(package! org-journal :disable t)
;; To install a package directly from a remote git repo, you must specify a ;; To install a package directly from a remote git repo, you must specify a
;; `:recipe'. You'll find documentation on what `:recipe' accepts here: ;; `:recipe'. You'll find documentation on what `:recipe' accepts here: