yeet
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: Org template
|
||||
# --
|
||||
#+TITLE: ${1:`
|
||||
(string-join
|
||||
(mapcar #'capitalize
|
||||
;; Replace -,_... with space
|
||||
(split-string
|
||||
(let (case-fold-search)
|
||||
;; Seperating lower from upper: hello|World
|
||||
(replace-regexp-in-string
|
||||
"\\([[:lower:]]\\)\\([[:upper:]]\\)" "\\1 \\2"
|
||||
;; Separating upper from (upper and lower): HTTP|Server
|
||||
(replace-regexp-in-string "\\([[:upper:]]\\)\\([[:upper:]][0-9[:lower:]]\\)"
|
||||
"\\1 \\2" (file-name-base buffer-file-name))))
|
||||
"[^[:word:]0-9]+"
|
||||
)) " " )
|
||||
`}
|
||||
|
||||
$0
|
||||
@@ -0,0 +1,17 @@
|
||||
#+TITLE:${1:Contact Name}
|
||||
#+DATE: `(format-time-string "%Y-%m-%d")`
|
||||
#+EMAIL: ${2:email@address.com}
|
||||
#+ADDRESS: $3
|
||||
#+CITY: $4
|
||||
#+COUNTRY: $5
|
||||
|
||||
${0:...}
|
||||
|
||||
* Associates
|
||||
+ Associate's name :: associates@email.com
|
||||
* Projects [/]
|
||||
** ACTIVE ... [/]
|
||||
* Invoices [/]
|
||||
** PENDING YYMM-0000 *1,000 USD*
|
||||
* Notes
|
||||
* Correspondence
|
||||
@@ -0,0 +1,70 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: Doom module readme
|
||||
# --
|
||||
#+TITLE: ${1:`(if (string-match "modules/\\([^/]+\\)/\\([^/]+\\)/.+" buffer-file-name)
|
||||
(format "%s/%s"
|
||||
(match-string 1 buffer-file-name)
|
||||
(match-string 2 buffer-file-name))
|
||||
"")`}
|
||||
#+DATE: `(format (format-time-string "%B %%s, %Y") (string-to-number (format-time-string "%d")))`
|
||||
#+SINCE: ${2:<replace with next tagged release version>}
|
||||
#+STARTUP: inlineimages nofold
|
||||
|
||||
* Table of Contents :TOC_3:noexport:
|
||||
|
||||
* Description
|
||||
${3:# A summary of what this module does.}
|
||||
|
||||
+ If possible, include a brief list of feature highlights here
|
||||
+ Like code completion, syntax checking or available snippets
|
||||
+ Include links to packages & external things where possible
|
||||
|
||||
** Maintainers
|
||||
+ @username_linked_to_gihub (Author)
|
||||
+ @username_linked_to_gihub
|
||||
+ @username_linked_to_gihub
|
||||
|
||||
# If this module has no maintainers, then...
|
||||
This module has no dedicated maintainers.
|
||||
|
||||
** Module Flags
|
||||
+ =+flag1= A short description of what this flag does and what it might need
|
||||
when enabled.
|
||||
+ =+flag2= A short description of what this flag does and what it might need
|
||||
when enabled.
|
||||
+ =+flag3= A short description of what this flag does and what it might need
|
||||
when enabled.
|
||||
|
||||
# If this module has no flags, then...
|
||||
This module provides no flags.
|
||||
|
||||
** Plugins
|
||||
# A list of linked plugins
|
||||
+ [[https://orgmode.org/][org-plus-contrib]]
|
||||
+ [[https://github.com/sabof/org-bullets][org-bullets]]
|
||||
+ [[https://github.com/TobiasZawada/org-yt][org-yt]]
|
||||
+ [[https://github.com/sebastiencs/company-box][company-box]]* (=+childframe=)
|
||||
+ =:lang crystal=
|
||||
+ [[https://github.com/brantou/ob-crystal][ob-crystal]]
|
||||
+ =:lang go=
|
||||
+ [[https://github.com/pope/ob-go][ob-go]]
|
||||
+ =+present=
|
||||
+ [[https://github.com/anler/centered-window-mode][centered-window]]
|
||||
+ [[https://github.com/takaxp/org-tree-slide][org-tree-slide]]
|
||||
+ [[https://gitlab.com/oer/org-re-reveal][org-re-reveal]]
|
||||
|
||||
** Hacks
|
||||
# A list of internal modifications to included packages; omit if unneeded
|
||||
|
||||
* Prerequisites
|
||||
This module has no prerequisites.
|
||||
|
||||
* Features
|
||||
# An in-depth list of features, how to use them, and their dependencies.
|
||||
|
||||
* Configuration
|
||||
# How to configure this module, including common problems and how to address them.
|
||||
|
||||
* Troubleshooting
|
||||
# Common issues and their solution, or places to look for help.
|
||||
$0
|
||||
@@ -0,0 +1,21 @@
|
||||
#+TITLE:${1:1234-5678}
|
||||
#+DATE: `(format-time-string "%Y-%m-%d")`
|
||||
#+ISSUED: ${2:`(format-time-string "%Y-%m-%d")`}
|
||||
#+PAID: ${3:`(format-time-string "%Y-%m-%d")`}
|
||||
#+CURRENCY: ${4:CAD|USD|DKK|GBP}
|
||||
#+CONTACT: ${5:Contact ID}
|
||||
#+PROJECT: ${6:Project ID}
|
||||
|
||||
| *Description* | *qty* | *rate* | *total* |
|
||||
|----------------------------------------------+-----+--------+-------|
|
||||
| $0 [1] | | | |
|
||||
|----------------------------------------------+-----+--------+-------|
|
||||
| | | | |
|
||||
#+TBLFM: $4=$2+$3::@>$4=vsum(@2..@-1)
|
||||
|
||||
[1] ...
|
||||
|
||||
* Comments
|
||||
...
|
||||
* Notes
|
||||
** Attachments [0/0]
|
||||
@@ -0,0 +1,9 @@
|
||||
#+TITLE:${1:Project Name}
|
||||
#+DATE: `(format-time-string "%Y-%m-%d")`
|
||||
#+CONTACT: ${2:Contact name}
|
||||
|
||||
$0
|
||||
|
||||
* Tasks [/]
|
||||
* Timeframe
|
||||
* Notes
|
||||
Reference in New Issue
Block a user