nvim config stolen from @Lukacms

This commit is contained in:
2023-11-03 11:24:41 +01:00
parent e881d7c7f5
commit 50c4761b4b
42 changed files with 1809 additions and 0 deletions

45
nvim/snippets/make.json Normal file
View File

@@ -0,0 +1,45 @@
{
"header": {
"prefix": "header_make",
"body": [
"##",
"## EPITECH PROJECT, 2023",
"## $RELATIVE_FILEPATH",
"## File description:",
"## $TM_FILENAME_BASE",
"##",
"",
"$0"
]
},
"src_c": {
"prefix": "SRC_C",
"body": [
"SRC\t=\t$1",
"",
"OBJ\t=\t(SRC:.c=.o)",
"",
"$0"
]
},
"src_cpp": {
"prefix": "SRC_CPP",
"body": [
"SRC\t=\t$1",
"",
"OBJ\t=\t(SRC:.cpp=.o)",
"",
"$0"
]
},
"src_asm": {
"prefix": "SRC_ASM",
"body": [
"SRC\t=\t$1",
"",
"OBJ\t=\t(SRC:.asm=.o)",
"",
"$0"
]
}
}