Move home-manager related files into home directory

This commit is contained in:
2022-08-19 01:54:13 +02:00
parent 56a100f0c6
commit 8f68ada082
50 changed files with 8 additions and 11 deletions

View File

@@ -0,0 +1,8 @@
;;; Compiled snippets and support files for `emacs-lisp-mode'
;;; Snippet definitions:
;;;
(yas-define-snippets 'emacs-lisp-mode
'(("lam" "(lambda ($1) ${2:(interactive${3: \"$4\"}) }$0)\n" "lambda" nil nil nil "/home/h7x4/.emacs.d/snippets/emacs-lisp-mode/lambda" nil nil)))
;;; Do not edit! File generated at Wed Jan 27 13:29:39 2021

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet; -*-
# contributor: Xah Lee (XahLee.org)
# name: lambda
# key: lam
# --
(lambda ($1) ${2:(interactive${3: "$4"}) }$0)

View File

@@ -0,0 +1,12 @@
;;; Compiled snippets and support files for `latex-mode'
;;; Snippet definitions:
;;;
(yas-define-snippets 'latex-mode
'(("tt" "\\begin{truthtable}\n {$0}\n {}\n\n\\end{truthtable}" "truthtable" nil nil nil "/home/h7x4/.emacs.d/snippets/latex-mode/truthtable" nil nil)
("sxs" "\\begin{subexcs}\n \\subexc{}\n $0\n\\end{subexcs}" "subexcs" nil nil nil "/home/h7x4/.emacs.d/snippets/latex-mode/subexcs" nil nil)
("pic" "\\pic{./graphics/$0}\n" "\\pic{}" nil nil nil "/home/h7x4/.emacs.d/snippets/latex-mode/pic" nil nil)
("ntnu-doc" "\\documentclass[12pt]{article}\n\\usepackage{ntnu}\n\n\\author{Øystein Tveit}\n\\title{$0}\n\n\\begin{document}\n \\ntnuTitle{}\n \\break{}\n \n \\begin{excs}\n \\exc{}\n $1\n \\end{excs}\n\n\\end{document}" "ntnu-doc" nil nil nil "/home/h7x4/.emacs.d/snippets/latex-mode/ntnu-doc" nil nil)
("xs" "\\begin{excs}\n \\exc{}\n $0\n\\end{excs}" "excs" nil nil nil "/home/h7x4/.emacs.d/snippets/latex-mode/excs.yasnippet" nil nil)))
;;; Do not edit! File generated at Wed Jan 27 13:29:39 2021

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# name: \begin{excs}
# key: xs
# --
\begin{excs}
\exc{}
$0
\end{excs}

View File

@@ -0,0 +1,21 @@
# -*- mode: snippet -*-
# name: NTNU document init
# key: ntnu-doc
# --
\documentclass[12pt]{article}
\usepackage{ntnu}
\author{Øystein Tveit}
\title{$0}
\begin{document}
\ntnuTitle{}
\break{}
\begin{excs}
\exc{}
$1
\end{excs}
\end{document}

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: \pic{}
# key: pic
# --
\pic{./graphics/$0}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# name: \begin{subexcs}
# key: sxs
# --
\begin{subexcs}
\subexc{}
$0
\end{subexcs}

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: \begin{truthtable}
# key: tt
# --
\begin{truthtable}
{$0}
{}
\end{truthtable}

View File

@@ -0,0 +1,11 @@
;;; Compiled snippets and support files for `org-mode'
;;; Snippet definitions:
;;;
(yas-define-snippets 'org-mode
'(("SRC" "#+BEGIN_SRC emacs-lisp\n$0\n#+END_SRC\n" "SRC" nil nil
((yas-indent-line 'fixed)
(yas-wrap-around-region nil))
"/home/h7x4/.emacs.d/snippets/org-mode/src" nil nil)))
;;; Do not edit! File generated at Wed Jan 27 13:29:39 2021

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# name: SRC
# key: SRC
# expand-env: ((yas-indent-line 'fixed) (yas-wrap-around-region nil))
# --
#+BEGIN_SRC emacs-lisp
$0
#+END_SRC