Skip to content

Instantly share code, notes, and snippets.

@cpoliver
Created January 15, 2018 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cpoliver/21762e8cc74c208621ac01df132cd1c9 to your computer and use it in GitHub Desktop.
Save cpoliver/21762e8cc74c208621ac01df132cd1c9 to your computer and use it in GitHub Desktop.
VS Code Casumo Temp
{
"vim.disableAnnoyingNeovimMessage": true,
"extensions.ignoreRecommendations": false,
"editor.fontFamily": "Operator Mono",
"javascript.validate.enable": false,
"editor.tabSize": 2,
"editor.renderWhitespace": "boundary",
"editor.cursorStyle": "underline",
"editor.insertSpaces": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.eslintcache": true,
"**/build": true,
"**/node_modules": true,
"**/test-output": true,
"**/.nyc*": true,
"**/dist": true,
},
"editor.tabCompletion": true,
"editor.lineNumbers": "relative",
"editor.rulers": [
120
],
"editor.roundedSelection": false,
"editor.minimap.enabled": false,
"editor.find.autoFindInSelection": true,
"editor.wordWrapColumn": 120,
"editor.autoClosingBrackets": true,
"editor.acceptSuggestionOnEnter": "smart",
"editor.emptySelectionClipboard": true,
"editor.cursorBlinking": "phase",
"editor.fontLigatures": true,
"editor.renderControlCharacters": true,
"editor.dragAndDrop": true,
"editor.links": true,
"window.restoreWindows": "all",
"window.title": "${activeEditorMedium} @ ${folderName}",
"files.insertFinalNewline": true,
"css.lint.duplicateProperties": "warning",
"css.lint.ieHack": "warning",
"css.lint.unknownVendorSpecificProperties": "warning",
"css.lint.propertyIgnoredDueToDisplay": "warning",
"css.lint.important": "warning",
"css.lint.float": "warning",
"css.lint.idSelector": "warning",
"scss.lint.duplicateProperties": "warning",
"scss.lint.ieHack": "warning",
"scss.lint.unknownVendorSpecificProperties": "warning",
"scss.lint.important": "warning",
"scss.lint.float": "warning",
"scss.lint.idSelector": "warning",
"debug.inlineValues": true,
"html.suggest.angular1": false,
"html.suggest.ionic": false,
"terminal.external.osxExec": "/Applications/iTerm.app",
"vim.useSystemClipboard": true,
"vim.textwidth": 120,
"window.zoomLevel": 0,
"workbench.activityBar.visible": false,
"workbench.colorTheme": "Operator Mono Dark Theme",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.enablePreview": false,
"vim.insertModeKeyBindings": [
{
"before": ["k", "j"],
"after": ["<Esc>"]
}
],
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": [
"Z",
"Z"
],
"after": [],
"commands": [
{
"command": "workbench.action.files.save",
"args": []
},
{
"command": "workbench.action.closeActiveEditor",
"args": []
}
]
}
],
"vim.disableExtension": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": true,
"suppressWelcomeNotice": false
},
"explorer.confirmDragAndDrop": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment