Skip to content

Instantly share code, notes, and snippets.

@mrowrpurr
Created January 17, 2023 21:47
Show Gist options
  • Save mrowrpurr/7078a69dd3e930b2ea7cda6fe2ea3972 to your computer and use it in GitHub Desktop.
Save mrowrpurr/7078a69dd3e930b2ea7cda6fe2ea3972 to your computer and use it in GitHub Desktop.
VS Code settings.json
{
"workbench.colorCustomizations": {
"[Just Black]": {
"editorRuler.foreground": "#ff00d0",
"activityBar.inactiveForeground": "#ff00d0",
"menubar.selectionForeground": "#00ffff",
"activityBar.foreground": "#00ffff",
"titleBar.activeForeground": "#00ffff",
"sideBarSectionHeader.foreground": "#ff00d0",
"sideBarTitle.foreground": "#ff00d0",
"tab.activeForeground": "#ff00d0",
"tab.inactiveForeground": "#ffffff"
}
},
"editor.rulers": [
80,
120
],
"window.title": "${rootName}${separator}${dirty}${activeEditorShort}${separator}${appName}",
"security.workspace.trust.enabled": false,
"editor.mouseWheelZoom": true,
"synthwave84.brightness": 0.5,
"vim.handleKeys": {
"<C-k>": false,
"<C-w>": false,
"<C-pageup>": false,
"<C-pagedown>": false
},
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"u"
],
"after": [],
"commands": [
{
"command": "undo"
}
]
},
{
"before": [
"<C-r>"
],
"after": [],
"commands": [
{
"command": "redo"
}
]
}
],
"files.exclude": {
"**/*.int": true
},
"cmake.configureOnOpen": true,
"workbench.editor.enablePreview": false,
"terminal.integrated.fontSize": 10,
"[Log]": {
"editor.fontSize": 9
},
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"vim.ignorecase": false,
"json.schemas": [
{
"fileMatch": [
"./schema.json"
]
}
],
"editor.formatOnSave": true,
"clangd.arguments": [
"--compile-commands-dir=${workspaceFolder}/build/Debug",
"--completion-style=detailed",
"--header-insertion=never"
],
"C_Cpp.intelliSenseEngine": "disabled",
"[cpp]": {
"editor.wordBasedSuggestions": false,
"editor.suggest.insertMode": "replace",
"editor.semanticHighlighting.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
},
"workbench.colorTheme": "Just Black",
"editor.fontFamily": "'Fira Code iScript', 'Fira Code', 'Courier New', monospace",
"editor.fontLigatures": true,
"cmake.generator": "Ninja",
"papyrus.skyrimSpecialEdition.installPath": "D:\\Steam\\steamapps\\common\\Skyrim Special Edition",
"papyrus.skyrimSpecialEdition.modDirectoryPath": "D:\\Dropbox\\Skyrim\\Skyrim Together\\Birthday Modlist 2023\\mods",
"window.zoomLevel": 3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment