(Emacs)+snippets from doom-snippet and removed default package

I've re-enabled yasnippet for ease of use, and added a ton of snippets
directly into my Dotfiles so only I get to curate what snippets are
removed.  Screw downloading them off someone else's repository at
their total mercy.
This commit is contained in:
2021-07-23 21:36:29 +01:00
parent 597bb886d9
commit 91c8da0e83
763 changed files with 5443 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
# -*- mode: snippet -*-
# name: #ifndef XXX; #define XXX; #endif
# key: once
# uuid: once
# --
#ifndef ${1:`(upcase (file-name-nondirectory (file-name-sans-extension (buffer-file-name))))`_H}
#define $1
$0
#endif /* $1 */