-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimwiki.snip
186 lines (123 loc) · 2.52 KB
/
vimwiki.snip
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
snippet bold
abbr *text*
options head
*${1}*${2}
snippet scratch
abbr ~~scratch~~
options head
~~${1}~~${2}
snippet italic
abbr _italic_
options head
_${1}_${2}
snippet sub
abbr ,,sub,,
options head
,,${1},,${2}
snippet upper
abbr ^upper^
options head
^${1}^${2}
snippet image_local
abbr {{<image path>}}
options head
{{local:${1:image_path}}}${2}
snippet image
abbr {{<image url>}}
options head
{{http://${1:image_url}}}${2}
snippet table
abbr table template
options head
|${1:title}|${2:title}|
|---|---|
|${3:value}|${4:value}${5:TARGET}|
snippet definintion
abbr definition
options head
term:: ${1:definintion}
snippet tag
abbr :tag1:tag2:
options head
:${1:tag}:${3}
snippet code
abbr {{{<code>}}}
options head
{{{
${0:TARGET}
}}}
snippet wiki_now
abbr wnow
alias wnow
options head
`strftime("%c")`: ${1}
snippet wiki_title
abbr wtitle
alias wtitle
options head
== `strftime("%c")` ${1} ==
snippet week_retrospective
abbr wweek
alias wweek
options head
== `strftime("%c")` Accomplishments of the Week ==
=== Monday ===
* ${1}
=== Tuesday ===
* ${2}
=== Wednesday ===
* ${3}
=== Thursday ===
* ${4}
=== Friday ===
* ${5}
=== Big Wins ===
* ${6}
=== Big 3 for this week ===
* ${7}
snippet daily_retrospective
abbr wdaily
alias wdaily
options head
== `strftime("%c")` ==
=== What have I accomplished today? ===
* ${1}
=== What is blocking my progress? ===
* ${2}
=== What am I going to work tomorrow? ===
* [ ] ${3}
snippet meeting_notes
abbr wnotes
alias wnotes
options head
== `strftime("%c")`: ${1} ==
=== Agenda ===
* ${2}
=== Notes ===
* ${3}
=== Follow-up ===
* [ ] ${4:Owner}: ${5:description}
snippet daily_journal
abbr wjournal
alias wjournal
options head
== `strftime("%c")` ==
=== Yesterday ===
==== What happened yesterday? ====
* ${1}
==== What were my biggest wins from yesterday? ====
* ${2}
==== What lessons did I learn? ====
* ${3}
=== Now ===
==== What am I thankful for right now? ====
* ${4}
==== How am I feeling right now? ====
* ${5}
=== Today ===
==== What did I read or hear? ====
* ${6}
==== What stood out? ====
* ${7}
==== What can I do next to move forward on my goals? ====
* ${8}