nvim: stop using nix for nvim

I just wanna work, I don't wanna nix
This commit is contained in:
Léana 江 2024-01-22 19:40:30 +01:00 committed by Léana 江
parent 157b568ab4
commit 3b08674586
30 changed files with 0 additions and 9 deletions

View file

@ -0,0 +1,27 @@
{
"Create main function": {
"prefix": "main",
"body": [
"int main()",
"{",
"\t$0",
"\treturn 0;",
"}"
]
},
"Debug expression": {
"prefix": "dbg",
"body": [
"printf(\"${1:expression}: ${2:format}\\n\", ${1:expression});"
]
},
"Check pointer": {
"prefix": "cpt",
"body": [
"if (${1:ptr} == NULL) {",
"\treturn $2;",
"}",
"$0"
]
}
}