diff options
author | Yigit Sever | 2023-08-18 23:42:39 +0300 |
---|---|---|
committer | Yigit Sever | 2023-08-18 23:42:39 +0300 |
commit | 387e08c52d9752bc839c71119f140ba8435c3d70 (patch) | |
tree | 3bb20c0e58ccf1e65ced4cfdfb6459e226a24672 /.config/nvim/my_snippets/all.snippets | |
parent | 14c14cfcc9aeb4bada6d2429162ded2917f26a94 (diff) | |
download | dotfiles-387e08c52d9752bc839c71119f140ba8435c3d70.tar.gz dotfiles-387e08c52d9752bc839c71119f140ba8435c3d70.tar.bz2 dotfiles-387e08c52d9752bc839c71119f140ba8435c3d70.zip |
nvim: switch to lazy.nvim
revert this as whole, if you miss the good old days
Diffstat (limited to '.config/nvim/my_snippets/all.snippets')
-rw-r--r-- | .config/nvim/my_snippets/all.snippets | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/.config/nvim/my_snippets/all.snippets b/.config/nvim/my_snippets/all.snippets deleted file mode 100644 index 338d1d7..0000000 --- a/.config/nvim/my_snippets/all.snippets +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | # vim:ft=snippets: | ||
2 | |||
3 | global !p | ||
4 | from vimsnippets import get_comment_format | ||
5 | endglobal | ||
6 | |||
7 | snippet fancybox "Box" | ||
8 | `!p snip.rv = '┌' + '─' * (len(t[1]) + 2) + '┐'` | ||
9 | │ $1 │ | ||
10 | `!p snip.rv = '└' + '─' * (len(t[1]) + 2) + '┘'` | ||
11 | $0 | ||
12 | endsnippet | ||
13 | |||
14 | snippet todo "TODO comment" bw | ||
15 | `!p snip.rv=get_comment_format()[0]` TODO: $0 <`!v strftime('%d-%m-%y')`, yigit> `!p snip.rv=get_comment_format()[2]` | ||
16 | endsnippet | ||