Files
dotfiles/.config/nvim/plugins/coc-settings.json
T
2022-02-04 08:28:07 -05:00

34 lines
1.2 KiB
JSON

{
"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
}