This website works better with JavaScript.
Почетна
Преглед
Помоћ
Пријавите Се
mitchty
/
dotfiles
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Захтеви за спајање
0
Издања
0
Вики
Activity
Преглед изворни кода
Add yasnippet back into the fold
cray
Mitch Tishmack
пре 10 година
родитељ
0a7ec98c4a
комит
fd025c1acd
1 измењених фајлова
са
22 додато
и
0 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+22
-0
emacs.org
+ 22
- 0
emacs.org
Прегледај датотеку
@@ -504,6 +504,28 @@ Turns out that someone wrote this exact thing already. Yay get to drop my own cr
)
#+END_SRC
*** yasnippet
#+BEGIN_SRC emacs-lisp
(use-package yasnippet
:ensure t
:init
(progn
(setq yas-snippet-dirs
'("~/.emacs.d/snippets"
"~/.emacs.d/snippets-upstream"
)))
:config
(progn
(yas/reload-all)
(add-hook 'prog-mode-hook
'(lambda ()
(yas-minor-mode)))
(add-hook 'org-mode-hook
'(lambda ()
(yas-minor-mode))))
)
#+END_SRC
*** semantic
#+BEGIN_SRC emacs-lisp
Write
Preview
Loading…
Откажи
Сачувај