New nvim config, not finished

This commit is contained in:
afonsofrancof 2022-10-19 00:47:07 +01:00
parent 58a0da692e
commit 671fbe40e1
15 changed files with 398 additions and 49 deletions

View file

@ -0,0 +1,23 @@
{
"Create Split": {
"prefix": ["split"],
"body": [
"\\langle $1 \\rangle$0"
],
"description": "Create a Split"
},
"Use CP Rule": {
"prefix": ["rule"],
"body": [
"\\equiv \\{\\text{Propriedade ${1:Numero_da_propriedade}}\\\\}\\\\\\\\$0"
],
"description": "Create a Split"
},
"Use conditional": {
"prefix": ["cond"],
"body": [
"${1:p} \\implies ${2:f},${3:g}$0"
],
"description": "Create an implication"
}
}

View file

@ -0,0 +1,11 @@
{
"name": "My Custom Snippets",
"contributes":{
"snippets":[
{
"language":["plaintex","tex"],
"path": "./languages/latex.json"
}
]
}
}