Skip to content

Instantly share code, notes, and snippets.

@srustamo
Created July 27, 2015 10:02
Show Gist options
  • Save srustamo/6fbb277e337c14faebe8 to your computer and use it in GitHub Desktop.
Save srustamo/6fbb277e337c14faebe8 to your computer and use it in GitHub Desktop.
emacs.gist
263 '(helm-completing-read-handlers-alist
265 ((describe-function . helm-completing-read-symbols)
266 (describe-variable . helm-completing-read-symbols)
267 (debug-on-entry . helm-completing-read-symbols)
268 (find-function . helm-completing-read-symbols)
269 (trace-function . helm-completing-read-symbols)
270 (trace-function-foreground . helm-completing-read-symbols)
271 (trace-function-background . helm-completing-read-symbols)
272 (find-tag . helm-completing-read-with-cands-in-buffer)
276 '(helm-firefox-default-directory
278 '(helm-mode-fuzzy-match t)
735 ("k" helm-show-kill-ring)
736 ("b" helm-buffers-list)
737 ("m" helm-all-mark-rings)
738 ("c" helm-calcul-expression)
739 ("e" helm-eshell-history)
741 ("g" helm-surfraw)
742 ("C" helm-world-time)
1100 ;;(eval-after-load "Helm" '(diminish 'helm-mode "Hlm"))
1856 ;; ** helm
1858 (require 'helm)
1859 (require 'helm-config)
1860 (helm-mode 1)
1861 ;(global-set-key (kbd "M-x") 'helm-M-x)
1862 (setq helm-M-x-fuzzy-match t) ;; optional fuzzy matching for helm-M-x
1864 ;; helm was heard from here 23_07_2015 18:28:10
emacs.gist
1877 (ivy-mode 1)
1878 (setq ivy-use-virtual-buffers t)
1881 (global-set-key (kbd "C-c C-r") 'ivy-resume)
1882 (global-set-key [f6] 'ivy-resume)
emacs.gist
12 (load "/Users/s3/GitHub/swiper/counsel.el")
1876 ;; ** swiper
1879 (global-set-key "\C-s" 'swiper)
1880 ;(global-set-key "\C-r" 'swiper)
700 (key-chord-define-global "jx" 'smex)
1835 ;; *** smex
1836 ;; 13_07_2015 https://github.com/nonsequitur/smex
1838 (global-set-key (kbd "M-x") 'smex)
1839 (global-set-key (kbd "M-X") 'smex-major-mode-commands)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment