Skip to content

Instantly share code, notes, and snippets.

@NickCrew
Last active February 14, 2019 17:02
Show Gist options
  • Save NickCrew/56b1fc4a22ce4800de4cf283ce704dcc to your computer and use it in GitHub Desktop.
Save NickCrew/56b1fc4a22ce4800de4cf283ce704dcc to your computer and use it in GitHub Desktop.
vscode config
{
"powershell.codeFormatting.openBraceOnSameLine": false,
"powershell.codeFormatting.newLineAfterCloseBrace": false,
"powershell.codeFormatting.newLineAfterOpenBrace": true,
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true,
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
"powershell.codeFormatting.whitespaceAroundOperator": true,
"powershell.codeFormatting.whitespaceAfterSeparator": true,
"powershell.codeFormatting.ignoreOneLineBlock": false,
"powershell.codeFormatting.preset": "Custom",
"powershell.scriptAnalysis.settingsPath": "C:\\FSIBuildTools\\BuildTools\\ToolsSandBox\\CodeNF\\.vscode\\PSScriptAnalyzerSettings.psd1",
"files.insertFinalNewline": true,
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.statusBarColorControl": true,
"vim.statusBarColors.normal": ["#1d5ec6", "#eaedf2"],
"vim.statusBarColors.insert": ["#841f6e", "#eaedf2"],
"vim.statusBarColors.visual": ["#0a6342", "#eaedf2"],
"vim.statusBarColors.visualline": ["#25630a", "#eaedf2"],
"vim.statusBarColors.visualblock": ["#0a6319", "#eaedf2"],
"vim.statusBarColors.replace": ["#D08770", "#eaedf2"],
"vim.insertModeKeyBindings": [
{
"before": ["k", "j"],
"after": ["<Esc>", "A"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", ","],
"commands": [":nohl"]
},
{
"before": ["<leader>", "m"],
"commands": ["bookmarks.toggle"]
},
{
"before": ["<leader>", "b"],
"commands": ["bookmarks.list"]
},
{
"before": ["Z", "Z"],
"commands": [":wq"]
},
{
"before": ["W"],
"commands": [":w"]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": [">"],
"commands": ["editor.action.indentLines"]
},
{
"before": ["<"],
"commands": ["editor.action.outdentLines"]
},
{
"before": ["p"],
"after": ["p", "g", "v", "y"]
}
],
"vim.leader": "<space>",
"vim.visualstar": true,
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": true,
"<C-d>": true,
"<C-u>": true
},
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"workbench.colorTheme": "Braver's Solarized Dark (themed workbench)",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"breadcrumbs.enabled": true,
"editor.minimap.showSlider": "always",
"window.zoomLevel": 0,
"editor.smoothScrolling": true,
"editor.minimap.maxColumn": 80,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"editor.matchBrackets": false,
"terminal.integrated.rendererType": "canvas",
"terminal.integrated.fontFamily": "Hack",
"terminal.integrated.fontSize": 13,
"explorer.sortOrder": "type",
"workbench.editor.highlightModifiedTabs": true,
"shellLauncher.shells.windows": [
{
"shell": "C:\\Windows\\System32\\cmd.exe",
"label": "cmd"
},
{
"shell": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"label": "PowerShell"
},
{
"shell": "C:\\Program Files\\Git\\bin\\bash.exe",
"label": "Git bash"
}
],
"workbench.iconTheme": "vscode-icons",
"editor.fontSize": 13,
"files.associations": {
"*.template": "xml",
"*.properties": "xml",
"*.build": "xml"
},
"editor.fontFamily": "Hack Regular, 'Courier New', monospace",
"editor.minimap.enabled": false,
"workbench.colorCustomizations": {
"terminal.ansiBlack": "#000000",
"terminal.ansiRed": "#c23621",
"terminal.ansiGreen": "#25bc24",
"terminal.ansiYellow": "#adad27",
"terminal.ansiBlue": "#492ee1",
"terminal.ansiMagenta": "#d338d3",
"terminal.ansiCyan": "#33bbc8",
"terminal.ansiWhite": "#cbcccd",
"terminal.ansiBrightBlack": "#818383",
"terminal.ansiBrightRed": "#fc391f",
"terminal.ansiBrightGreen": "#31e722",
"terminal.ansiBrightYellow": "#eaec23",
"terminal.ansiBrightBlue": "#5833ff",
"terminal.ansiBrightMagenta": "#f935f8",
"terminal.ansiBrightCyan": "#14f0f0",
"terminal.ansiBrightWhite": "#e9ebeb",
"statusBar.background": "#0a6342",
"statusBar.noFolderBackground": "#0a6342",
"statusBar.debuggingBackground": "#0a6342",
"statusBar.foreground": "#eaedf2"
},
"mssql.connections": [
{
"server": "FSIDEV-NI1700\\SQLEXPRESS",
"database": "devDB",
"authenticationType": "Integrated",
"profileName": "devSQL",
"password": ""
}
],
"files.autoSaveDelay": 3000,
"files.autoSave": "off"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment