Add neo-vim configuration

This commit is contained in:
Anthony Oteri
2022-02-04 08:28:07 -05:00
parent 862b793a0b
commit f9ca22de6f
42 changed files with 568 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{
"coc.preferences.extensionUpdateCheck": "daily",
"coc.preferences.formatOnType": true,
"diagnostic.checkCurrentLine": true,
"diagnostic.virtualText": true,
"diagnostic.enableMessage": "jump",
"diagnostic.errorSign": "✖",
"diagnostic.warningSign": "⚠",
"diagnostic.infoSign": "•",
"diagnostic.hintSign": "•",
"diagnostic-languageserver.filetypes": {
"php": ["phpstan", "phpcs"]
},
"diagnostic-languageserver.mergeConfig": true,
"diagnostic-languageserver.linters": {
"phpcs": {
"args": [ "--standard=PSR12", "--exclude=Generic.Files.LineLength.TooLong", "--report=emacs", "-s", "-" ]
}
},
"git.enableGutters": true,
"git.addedSign.text": "┃",
"git.changedSign.text": "┃",
"git.removedSign.text": "▁",
"git.topRemovedSign.text": "▔",
"git.changeRemovedSign.text": "▔",
"phpls.path": "/usr/local/bin/intelephense",
"php-cs-fixer.config": ".php-cs-fixer.dist.php",
"php-cs-fixer.enableFormatProvider": true,
"intelephense.environment.phpVersion": "8",
"tailwindCSS.validate": true,
"tailwindCSS.emmetCompletions": true,
"prettier.requireConfig": true
}