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
|
;; Change Org TODO keywords
|
||||||
(setq org-todo-keywords '((sequence "TODO" "NEXT" "WAITING" "INACTIVE" "|" "DONE" "CANCELLED")))
|
(setq org-todo-keywords '((sequence "TODO" "NEXT" "WAITING" "INACTIVE" "|" "DONE" "CANCELLED")))
|
||||||
;; Rice Org elements
|
;; 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-ellipsis " ▼ "
|
||||||
org-bullets-bullet-list '("◉" "⋆" "○" "‣"))
|
org-bullets-bullet-list '("◉" "⁖" "○" "‣"))
|
||||||
;; Cycle through Org header visibility and disable completion
|
;; Cycle through Org header visibility and disable completion
|
||||||
(after! evil-org
|
(after! evil-org
|
||||||
(remove-hook 'org-tab-first-hook #'+org-cycle-only-current-subtree-h)
|
(remove-hook 'org-tab-first-hook #'+org-cycle-only-current-subtree-h)
|
||||||
|
|
12
config.el
12
config.el
|
@ -3,8 +3,8 @@
|
||||||
;; Place your private configuration here
|
;; Place your private configuration here
|
||||||
;;
|
;;
|
||||||
;; Set Font and theme
|
;; Set Font and theme
|
||||||
(setq doom-font (font-spec :family "Iosevka" :size 16))
|
(setq doom-font (font-spec :family "Iosevka" :size 16)
|
||||||
(setq doom-theme 'doom-city-lights)
|
doom-theme 'doom-city-lights)
|
||||||
;; Start maximized
|
;; Start maximized
|
||||||
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
||||||
;; Set projects directories
|
;; Set projects directories
|
||||||
|
@ -19,10 +19,10 @@
|
||||||
(get-buffer-create "*compilation*"))
|
(get-buffer-create "*compilation*"))
|
||||||
(message "No Compilation Errors!")))))
|
(message "No Compilation Errors!")))))
|
||||||
; Auto cleanup recentf
|
; Auto cleanup recentf
|
||||||
(setq recentf-auto-cleanup 180)
|
(setq recentf-auto-cleanup '300)
|
||||||
; Save backup files to ~/.cache and autosave files to ~/.cache/emacs
|
; Save backup files to ~/.cache and autosave files to ~/.cache/emacs
|
||||||
(setq backup-directory-alist `(("." . "~/.cache")))
|
(setq backup-directory-alist `(("." . "~/.cache"))
|
||||||
(setq auto-save-list-file-prefix
|
auto-save-list-file-prefix
|
||||||
(concat "~/.cache/emacs"))
|
(concat "~/.cache/emacs"))
|
||||||
;; Set Magit repositories
|
;; Set Magit repositories
|
||||||
(setq magit-repository-directories '(("~/Projects" . 2)
|
(setq magit-repository-directories '(("~/Projects" . 2)
|
||||||
|
@ -39,3 +39,5 @@
|
||||||
(defun revert-buffer-no-confirm ()
|
(defun revert-buffer-no-confirm ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(revert-buffer :ignore-auto :noconfirm))
|
(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