Skip to content

Instantly share code, notes, and snippets.

@coreysan
Last active April 20, 2018 23:37
Show Gist options
  • Save coreysan/d7e2d0262bcf6b723ebc6adff043261a to your computer and use it in GitHub Desktop.
Save coreysan/d7e2d0262bcf6b723ebc6adff043261a to your computer and use it in GitHub Desktop.
psi-header config
{
"editor.wordWrap": "on",
"editor.multiCursorModifier": "alt",
"fileheader.Author": "Corey Sanford",
"fileheader.LastModifiedBy": "Corey Sanford",
// Controls whether the prompt will show
"sublimeTextKeymap.promptV3Features": true,
// Changes the multi cursor mouse binding
"editor.multiCursorModifier": "ctrlCmd",
// Specifies the location of snippets in the suggestion widget
"editor.snippetSuggestions": "top",
"editor.tabSize": 2,
// Controls whether format on paste is on or off
"editor.formatOnPaste": true,
"window.zoomLevel": 2,
"workbench.colorTheme": "Material Theme",
"materialTheme.cache.workbench.settings": {},
"explorer.confirmDragAndDrop": false,
"files.trimTrailingWhitespace": true,
"psi-header.config.forceToTop": true,
"psi-header.config.blankLinesAfter": 1,
"psi-header.config.author": "Corey Sanford",
"psi-header.config.authorEmail": "corey@hackcapital.com",
"psi-header.changes-tracking.isActive": true,
"psi-header.changes-tracking.modAuthor": "@lastModifiedBy: ",
"psi-header.changes-tracking.modDate": "@lastModifiedTime: ",
"psi-header.lang-config": [
{
"language": "*",
"begin": "/**"
}
],
"psi-header.templates": [
{
"language": "*",
"template": [
"@author: <<author>> <<<authoremail>>>",
"@date: <<filecreated('YYYY-MM-DD HH:mm:ss')>>",
"@lastModifiedBy: <<author>> <<<authoremail>>>",
"@lastModifiedTime: <<dateformat('YYYY-MM-DD HH:mm:ss')>>",
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment