Wiki source for Unity3dOnUbuntu


Show raw source

====MS VSCode====
extentions
%%(language-ref)
========== common ==========
aaron-bond.better-comments-0.1.3
DavidAnson.vscode-markdownlint-0.11.1
hnw.vscode-auto-open-markdown-preview-0.0.4
silverlakesoftware.searchdocsets-vscode-1.0.1
========== unity & c# =========
k--kato.docomment-0.0.17
ms-vscode.csharp-1.13.1
slevesque.shader-1.1.2
Unity.unity-debug-1.2.1
YclepticStudios.unity-snippets-0.1.2
======== platformio & cpp========
ajshort.include-autocomplete-0.0.4
cschlosser.doxdocgen-0.0.6
ms-vscode.cpptools-0.14.2
platformio.platformio-ide-0.7.4
webfreak.debug-0.21.2
======== optional =============
robertohuertasm.vscode-icons-7.18.1
%%


/home/ace/.config/Code/User/settings.json
%%(json)
{
"editor.fontFamily": "'Ubuntu Mono', 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
"editor.fontSize": 16,
"editor.formatOnType": false,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.codeLens": false,
"editor.minimap.enabled": false,
"editor.dragAndDrop": false,
"editor.autoIndent": true,
"workbench.sideBar.location": "right",
"omnisharp.useMono": true,
"workbench.iconTheme": "vscode-icons",
"csharp.suppressDotnetInstallWarning": true,
"vsicons.dontShowNewVersionMessage": true,
"workbench.startupEditor": "none",
"git.confirmSync": false,
"git.enableSmartCommit": true,
"editor.multiCursorModifier": "ctrlCmd",
"C_Cpp.intelliSenseEngine": "Default",
// Press the Enter key to activate a command (Default: false)
"docomment.activateOnEnter": true,
// Insert spaces when pressing Tab.
"editor.insertSpaces": true,
// The number of spaces a tab is equal to.
"editor.tabSize": 4,
"workbench.panel.location": "bottom"
}
%%

/home/ace/.config/Code/User/keybindings.json
%%(json)
[
{
"key": "f2",
"command": "workbench.action.gotoSymbol",
"when": "editorTextFocus"
},
{
"key": "f1",
"command": "docsetViewer.search"
},
{
"key": "ctrl+f1",
"command": "editor.action.triggerParameterHints",
"when": "editorHasSignatureHelpProvider && editorTextFocus"
},
{
"key": "alt+u",
"command": "editor.action.transformToUppercase"
}
]
%%

/home/ace/.config/Code/User/snippets/cpp.json
%%(json)
{
"class_": {
"prefix": "class_",
"body": "\r\nclass ${1:$TM_FILENAME_BASE} {\r\nprivate:\r\n\t${2:/* data */}\r\npublic:\r\n\t${1:()}(${3:/* args */}) ${4:= default;}\r\n};\r\n",
"description": "Class"
},
"for": {
"prefix": "for_",
"body": "for(int ${1:i} = 0; ${1:i} < ${2:count}; ${1:i}++)\n{\n\t${3:/* code */}\n}\n",
"description": "For Loop "
},
"#ifdef_": {
"prefix": "#ifdef_",
"body": "#ifndef ${1:${TM_FILENAME/(.*)\\.h/${1:/capitalize}/}}\n#define ${1:/*define*/}\n${2:/* code */}\n#endif //${1:/*define*/}\n",
"description": "ifndef (…)"
}
}
%%