diff options
-rw-r--r-- | init.org | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -306,9 +306,10 @@ Oleg Pykhalov shared this useful snippet to list bugs for which I am listed as t When working on Guix it helps to reduce boilerplate with snippets. I like to have YASnippet enabled and let it use the snippets that are provided with Guix: #+BEGIN_SRC elisp -(require 'yasnippet) -(add-to-list 'yas-snippet-dirs "~/dev/gx/branches/master/etc/snippets") -(yas-global-mode) +(use-package yasnippet + :config + (add-to-list 'yas-snippet-dirs "~/dev/gx/branches/master/etc/snippets") + (yas-global-mode)) #+END_SRC * Manuals |