diff --git a/customizations.el b/customizations.el index 3c76c8a..e75cc72 100644 --- a/customizations.el +++ b/customizations.el @@ -71,6 +71,7 @@ goto-last-change helm helm-ag + helm-c-yasnippet helm-chrome helm-company helm-descbinds diff --git a/init.el b/init.el index 8c2a3a6..93108da 100644 --- a/init.el +++ b/init.el @@ -836,6 +836,14 @@ :config (global-set-key [remap kill-ring-save] 'easy-kill)) +(use-package helm-c-yasnippet + :ensure t + :demand t + :config + (setq helm-yas-space-match-any-greedy t) + :bind + (("C-c y" . helm-yas-complete))) + ;; Load my own functions (load "gnu-c-header.el") (load "toggle-window-split.el")