From eda0a84ec57a81bb61addb77714d1f396b3583ca Mon Sep 17 00:00:00 2001 From: san <phamtusan@gmail.com> Date: Fri, 12 Jan 2018 16:38:06 +0100 Subject: [PATCH] multiple cursors --- init.el | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index 1abc3ac..6bec1e2 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"))))) -- GitLab