Rice Org mode while improving the config layout
This commit is contained in:
parent
b6f507325a
commit
52005140a9
4
+org.el
4
+org.el
|
@ -4,9 +4,9 @@
|
|||
;; Change Org TODO keywords
|
||||
(setq org-todo-keywords '((sequence "TODO" "NEXT" "WAITING" "INACTIVE" "|" "DONE" "CANCELLED")))
|
||||
;; Rice Org elements
|
||||
(setq org-todo-keyword-faces '(("INACTIVE" . "grey") ("NEXT" . "turquoise") ("WAITING" . ""))
|
||||
(setq org-todo-keyword-faces '(("INACTIVE" . "grey") ("NEXT" . "turquoise") ("WAITING" . warning))
|
||||
org-ellipsis " ▼ "
|
||||
org-bullets-bullet-list '("◉" "⋆" "○" "‣"))
|
||||
org-bullets-bullet-list '("◉" "⁖" "○" "‣"))
|
||||
;; Cycle through Org header visibility and disable completion
|
||||
(after! evil-org
|
||||
(remove-hook 'org-tab-first-hook #'+org-cycle-only-current-subtree-h)
|
||||
|
|
14
config.el
14
config.el
|
@ -3,8 +3,8 @@
|
|||
;; Place your private configuration here
|
||||
;;
|
||||
;; Set Font and theme
|
||||
(setq doom-font (font-spec :family "Iosevka" :size 16))
|
||||
(setq doom-theme 'doom-city-lights)
|
||||
(setq doom-font (font-spec :family "Iosevka" :size 16)
|
||||
doom-theme 'doom-city-lights)
|
||||
;; Start maximized
|
||||
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
||||
;; Set projects directories
|
||||
|
@ -19,11 +19,11 @@
|
|||
(get-buffer-create "*compilation*"))
|
||||
(message "No Compilation Errors!")))))
|
||||
; Auto cleanup recentf
|
||||
(setq recentf-auto-cleanup 180)
|
||||
(setq recentf-auto-cleanup '300)
|
||||
; Save backup files to ~/.cache and autosave files to ~/.cache/emacs
|
||||
(setq backup-directory-alist `(("." . "~/.cache")))
|
||||
(setq auto-save-list-file-prefix
|
||||
(concat "~/.cache/emacs"))
|
||||
(setq backup-directory-alist `(("." . "~/.cache"))
|
||||
auto-save-list-file-prefix
|
||||
(concat "~/.cache/emacs"))
|
||||
;; Set Magit repositories
|
||||
(setq magit-repository-directories '(("~/Projects" . 2)
|
||||
("~/.dotfiles" . 0)
|
||||
|
@ -39,3 +39,5 @@
|
|||
(defun revert-buffer-no-confirm ()
|
||||
(interactive)
|
||||
(revert-buffer :ignore-auto :noconfirm))
|
||||
;; Select target in Makefile compilation as default
|
||||
(map! :leader :n "c c" #'makefile-executor-execute-project-target)
|
||||
|
|
Loading…
Reference in New Issue