Skip to content

Instantly share code, notes, and snippets.

@menxit
Created August 17, 2018 20:35
Show Gist options
  • Save menxit/9b7dffd5b8a2f19e9f7644d7840b45a8 to your computer and use it in GitHub Desktop.
Save menxit/9b7dffd5b8a2f19e9f7644d7840b45a8 to your computer and use it in GitHub Desktop.
;; 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