Compare commits

..

2 Commits

Author SHA1 Message Date
a8231133ee
Enable Java module and pandoc mode 2019-12-16 20:10:19 +01:00
52005140a9
Rice Org mode while improving the config layout 2019-12-16 20:08:37 +01:00
4 changed files with 12 additions and 9 deletions

View File

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

View File

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

View File

@ -117,7 +117,7 @@
;;(haskell +dante) ; a language that's lazier than I am ;;(haskell +dante) ; a language that's lazier than I am
;;hy ; readability of scheme w/ speed of python ;;hy ; readability of scheme w/ speed of python
;;idris ; ;;idris ;
;;(java +meghanada) ; the poster child for carpal tunnel syndrome (java +meghanada) ; the poster child for carpal tunnel syndrome
;;javascript ; all(hope(abandon(ye(who(enter(here)))))) ;;javascript ; all(hope(abandon(ye(who(enter(here))))))
;;julia ; a better, faster MATLAB ;;julia ; a better, faster MATLAB
;;kotlin ; a better, slicker Java(Script) ;;kotlin ; a better, slicker Java(Script)

View File

@ -6,3 +6,4 @@
;; (package! another-package :recipe (:host github :repo "username/repo")) ;; (package! another-package :recipe (:host github :repo "username/repo"))
;; (package! builtin-package :disable t) ;; (package! builtin-package :disable t)
(package! org-super-agenda) (package! org-super-agenda)
(package! pandoc-mode)