nixos-config/users/home-manager/foo-dogsquared/config/nvim/own-snippets/markdown.snippets
Gabriel Arazas 3a022a374a Restructure the modules
I think this is better for separating modules explicitly. This is also
considered as there are similar objects between modules (e.g., NixOS
and home-manager modules and users).

Revert users module to old position
2021-12-06 17:03:39 +08:00

23 lines
262 B
Plaintext

# Text formatting
snippet bf "Boldface" iw
**$1**
endsnippet
snippet tt "Teletype (or monospace text)" iw
\`$1\`
endsnippet
# Content formatting
snippet src "Source code listing" bi
```$1
$2
```
$0
endsnippet
snippet link "Quick link" i
[$1]($2)
endsnippet