;;; config-file -- Helm configuration ;;; Commentary: ;;; The slowest part is actually loading helm-projectile ;;; Code: (require 'helm) (require 'helm-config) (require 'helm-grep) (require 'helm-locate) (require 'helm-misc) (require 'projectile) (require 'helm-projectile) (setq helm-quick-update t) (setq helm-bookmark-show-location t) (setq helm-buffers-fuzzy-matching t) ;;; Save current position to mark ring (add-hook 'helm-goto-line-before-hook 'helm-save-current-pos-to-mark-ring) ;; Better helm fonts (set-face-attribute 'helm-selection nil :background "gold" :foreground "black") ;;; Keyboard mappings (define-key helm-map (kbd "") 'helm-execute-persistent-action) ; rebihnd tab to do persistent action (define-key helm-map (kbd "C-i") 'helm-execute-persistent-action) ; make TAB works in terminal (define-key helm-map (kbd "C-z") 'helm-select-action) ; list actions using C-z (define-key helm-grep-mode-map (kbd "") 'helm-grep-mode-jump-other-window) (define-key helm-grep-mode-map (kbd "n") 'helm-grep-mode-jump-other-window-forward) (define-key helm-grep-mode-map (kbd "p") 'helm-grep-mode-jump-other-window-backward) (global-set-key (kbd "M-y") 'helm-show-kill-ring) (global-set-key (kbd "C-x b") 'helm-mini) (global-set-key (kbd "C-x C-f") 'helm-find-files) (global-set-key (kbd "C-h SPC") 'helm-all-mark-rings) (global-set-key (kbd "C-c h o") 'helm-occur) (define-key helm-grep-mode-map (kbd "") 'helm-grep-mode-jump-other-window) (define-key helm-grep-mode-map (kbd "n") 'helm-grep-mode-jump-other-window-forward) (define-key helm-grep-mode-map (kbd "p") 'helm-grep-mode-jump-other-window-backward) ;;; Evil helm (define-key evil-normal-state-map (kbd "C-p") 'helm-mini) (evil-leader/set-key "" 'helm-M-x) (define-key evil-normal-state-map (kbd ",f") 'helm-swoop) (define-key evil-normal-state-map (kbd ",a") 'helm-ag) (define-key evil-normal-state-map (kbd ",y") 'helm-show-kill-ring) ;;; Keyboard (global-set-key (kbd "M-x") 'helm-M-x) (define-key helm-map (kbd "C-w") 'backward-kill-word) ;; use helm to list eshell history (add-hook 'eshell-mode-hook #'(lambda () (define-key eshell-mode-map (kbd "M-l") 'helm-eshell-history))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; PACKAGE: helm-swoop ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Locate the helm-swoop folder to your path (require 'helm-swoop) ;; Change the keybinds to whatever you like :) (global-set-key (kbd "C-c h o") 'helm-swoop) (global-set-key (kbd "C-c s") 'helm-multi-swoop-all) ;; When doing isearch, hand the word over to helm-swoop (define-key isearch-mode-map (kbd "M-i") 'helm-swoop-from-isearch) ;; From helm-swoop to helm-multi-swoop-all (define-key helm-swoop-map (kbd "M-i") 'helm-multi-swoop-all-from-helm-swoop) ;; Save buffer when helm-multi-swoop-edit complete (setq helm-multi-swoop-edit-save t) ;; If this value is t, split window inside the current window (setq helm-swoop-split-with-multiple-windows t) ;; Split direcion. 'split-window-vertically or 'split-window-horizontally (setq helm-swoop-split-direction 'split-window-vertically) ;; If nil, you can slightly boost invoke speed in exchange for text color (setq helm-swoop-speed-or-color t) (helm-mode 1) (provide 'config-helm) ;;; config-helm.el ends here