Created
August 17, 2018 20:35
-
-
Save menxit/9b7dffd5b8a2f19e9f7644d7840b45a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; ido-mode | |
(setq ido-enable-flex-matching t) | |
(setq ido-everywhere t) | |
(ido-mode 1) | |
;; helm configuration | |
(use-package helm | |
:ensure t | |
:bind | |
("M-x" . helm-M-x) | |
("C-x b" . helm-mini) | |
("C-x C-b" . helm-buffers-list) | |
("C-h f" . helm-apropos)) | |
(helm-mode 1) | |
;; org refile | |
(setq org-refile-targets '((nil :maxlevel . 9) | |
(org-agenda-files :maxlevel . 9))) | |
(setq org-outline-path-complete-in-steps nil) | |
(setq org-refile-use-outline-path t) | |
(setq org-refile-allow-creating-parent-nodes 'confirm) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment