diff --git a/emacs.d/init.el b/emacs.d/init.el index 7afbefd..5eedafb 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -99,6 +99,19 @@ (install-package-if-missing 'evil-commentary) (evil-commentary-mode) +;; Helm +(install-package-if-missing 'helm) +(install-package-if-missing 'helm-projectile) +(install-package-if-missing 'helm-rg) +(global-set-key (kbd "M-x") #'helm-M-x) +(global-set-key (kbd "C-x C-f") #'helm-find-files) +(global-set-key (kbd "C-x C-b") #'helm-buffers-list) +(evil-define-key '(visual normal) 'global + (kbd "SPC f g") 'helm-projectile-rg + (kbd "C-p") 'helm-projectile-find-file) +(define-key helm-map (kbd "") 'backward-char) +(define-key helm-map (kbd "") 'forward-char) + ;;; Color Themes (install-package-if-missing 'color-theme-sanityinc-tomorrow) (load-theme 'sanityinc-tomorrow-bright t)