feat: initial commit

This commit is contained in:
2023-10-11 21:51:24 +02:00
commit 8709837ef1
128 changed files with 2464 additions and 0 deletions

View File

@@ -0,0 +1 @@
c-like-syntax

5
.emacs.snippets/c-mode/inc Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: #include <...>
# key: inc
# --
#include <$0>

5
.emacs.snippets/c-mode/incq Executable file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: #include "..."
# key: incq
# --
#include "$0"

9
.emacs.snippets/c-mode/main Executable file
View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: int main(argc, argv) { ... }
# key: main
# --
int main(int argc, char *argv[])
{
$0
return 0;
}