/etc/emacs/site-start.d/50yasnippet.el is in yasnippet 0.6.1c-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | ;; -*-emacs-lisp-*-
;;
;; Emacs startup file,for the yasnippet package
;;
;; The yasnippet package follows the Debian GNU/Linux 'emacsen' policy
;; but doesn't need to compile yasnippet.el for each 'emacs flavor'.
(setq load-path (cons (concat "/usr/share/emacs/site-lisp/yasnippet") load-path))
(require 'yasnippet)
(yas/initialize)
(yas/load-directory "/usr/share/emacs/site-lisp/yasnippet/snippets")
|