+doom +nyxt +bat +zellij

This commit is contained in:
m3tam3re
2024-03-23 05:46:12 +01:00
parent 57298a6bbc
commit 94423f7e3e
44 changed files with 6461 additions and 0 deletions

View File

@ -0,0 +1,15 @@
;;; Compiled snippets and support files for `org-mode'
;;; Snippet definitions:
;;;
(yas-define-snippets 'org-mode
'(("<rs" "#+begin_src rust\n#+end_src" "src-block-rust" nil nil nil "/home/m3tam3re/.config/doom/snippets/org-mode/src-block-rust" nil nil)
("<js" "#+begin_src javascript\n#+end_src\n" "src-block-javascript" nil nil nil "/home/m3tam3re/.config/doom/snippets/org-mode/src-block-javascript" nil nil)
("<el" "#+begin_src emacs-lisp\n#+end_src\n" "src-block-emacs-lisp" nil nil nil "/home/m3tam3re/.config/doom/snippets/org-mode/src-block-emacs-lisp" nil nil)
("<s" "#+begin_src ${1:$$(yas/choose-value '(\"golang\" \"graphql\" \"javascript\" \"json\" \"lisp\" \"python\" \"rust\" \"shell\" \"sql\"))}\n$0\n#+end_src\n" "org-codeblock" nil nil nil "/home/m3tam3re/.config/doom/snippets/org-mode/org-codeblock" nil nil)
("aii" "#+begin_ai :image :size ${1:$$(yas/choose-value '(\"256x256\" \"512x512\" \"1024x1024\"))}\n$0\n#+end_ai" "org-ai-image" nil nil nil "/home/m3tam3re/.config/doom/snippets/org-mode/org-ai-image" nil nil)
("ai" "#+begin_ai\n${1:[SYS]: ${2:You are a helpful assistant.}\n\n}[ME]: $0\n#+end_ai\n" "org-ai-block" nil nil nil "/home/m3tam3re/.config/doom/snippets/org-mode/org-ai-block" nil nil)
("hg-img" "#+CAPTION: TITLE\n#+ATTR_HTML: :alt ALT TEXT\n[[file:/img/file.png]]" "hugo-image" nil nil nil "/home/m3tam3re/.config/doom/snippets/org-mode/hugo-image" nil nil)
("hg-head" "#+title: TITLE\n#+subtitle: SUBTITLE\n#+date: 2023-06-27\n#+draft: false\n#+tags[]: TAG1, TAG2\n#+categories[]: CAT1, CAT2" "hugo-header" nil nil nil "/home/m3tam3re/.config/doom/snippets/org-mode/hugo-header" nil nil)))
;;; Do not edit! File generated at Tue Jan 9 10:49:17 2024

View File

@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# name: hugo-header
# key: hg-head
# --
#+title: TITLE
#+subtitle: SUBTITLE
#+date: 2023-06-27
#+draft: false
#+tags[]: TAG1, TAG2
#+categories[]: CAT1, CAT2

View File

@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: hugo-image
# key: hg-img
# --
#+CAPTION: TITLE
#+ATTR_HTML: :alt ALT TEXT
[[file:/img/file.png]]

View File

@ -0,0 +1,10 @@
# -*- mode: snippet -*-
#name : org-ai-block
#key : ai
#contributor : Robert Krahn
# --
#+begin_ai
${1:[SYS]: ${2:You are a helpful assistant.}
}[ME]: $0
#+end_ai

View File

@ -0,0 +1,8 @@
# -*- mode: snippet -*-
#name : org-ai-image
#key : aii
#contributor : Robert Krahn
# --
#+begin_ai :image :size ${1:$$(yas/choose-value '("256x256" "512x512" "1024x1024"))}
$0
#+end_ai

View File

@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: org-codeblock
# key: <s
# --
#+begin_src ${1:$$(yas/choose-value '("golang" "graphql" "javascript" "json" "lisp" "python" "rust" "shell" "sql"))}
$0
#+end_src

View File

@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: src-block-emacs-lisp
# key: <el
# --
#+begin_src emacs-lisp
#+end_src

View File

@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: src-block-javascript
# key: <js
# --
#+begin_src javascript
#+end_src

View File

@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: src-block-rust
# key: <rs
# --
#+begin_src rust
#+end_src