diff --git a/init.el b/init.el index 1abc3ac0dfade82222114cef956e4c6ca874d5aa..6bec1e22ff2aef475afbd5a0596ba03d10127302 100644 --- a/init.el +++ b/init.el @@ -211,10 +211,22 @@ '(c-basic-offset 6) '(c-default-style (quote ((c-mode . "stroustrup") (c++-mode . "stroustrup")))) '(ecb-options-version "2.40") + '(org-agenda-ndays 7) + '(org-agenda-show-all-dates t) + '(org-agenda-skip-deadline-if-done t) + '(org-agenda-skip-scheduled-if-done t) + '(org-agenda-start-on-weekday nil) + '(org-deadline-warning-days 14) + '(org-display-custom-times t) + '(org-fast-tag-selection-single-key (quote expert)) + '(org-reverse-note-order t) + '(org-time-stamp-custom-formats (quote ("<%d/%m/%Y %a>" . "<%d/%m/%Y %a [%H:%M]>"))) + '(package-selected-packages + (quote + (powerline zenburn-theme use-package undo-tree solarized-theme sml-modeline org-journal org-fstree multiple-cursors magit latex-preview-pane ido-vertical-mode hlinum highlight-indentation guide-key golden-ratio flycheck exec-path-from-shell dired-details diminish counsel color-theme browse-kill-ring autopair auto-complete auctex-latexmk))) '(python-indent-guess-indent-offset nil) '(sml/battery-format " [ %p ] ") - '(sml/show-client t) - ) + '(sml/show-client t)) (message "load packages") @@ -241,7 +253,7 @@ ;; (autoload 'flycheck "flycheck" "load flycheck" t) ;(autoload 'multiple-cursors "multiple-cursors" "load multiple-cursors" t) ;(require 'multiple-cursors) -(use-package multi-cursors +(use-package multiple-cursors ;; Loads after 2 second of idle time. :defer 2 :config @@ -654,3 +666,9 @@ abort completely with `C-g'." (message "DONE") (provide 'init) ;;; init.el ends here +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(show-paren-match ((((class color) (background light)) (:background "blue")))))