Akagi201
1/18/2017 - 10:59 AM

vscode config files

vscode config files

// Place your settings in this file to overwrite the default settings
{
    // Editor
    "editor.fontSize": 14,
    "editor.fontFamily": "Input Mono Narrow",
    "editor.tabSize": 2,
    "editor.minimap.enabled": true,

    // Window
    "window.zoomLevel": 1,
    "window.title": "${activeEditorMedium}${separator}${rootName}",

    // External Terminal
    "terminal.external.osxExec": "iTerm.app",

    // Extensions
    "extensions.autoUpdate": true,

    // C/C++ Configuration
    "C_Cpp.clang_format_path": "/usr/local/bin/clang-format",
    "C_Cpp.clang_format_style": "file",
    "C_Cpp.clang_format_fallbackStyle": "Google",
    "C_Cpp.clang_format_sortIncludes": true,

    // TypeScript
    "typescript.check.tscVersion": true,

    // Rusty Code configuration
    "rust.racerPath": "/Users/akagi201/.cargo/bin/",
    "rust.rustfmtPath": "/Users/akagi201/.cargo/bin/",
    "rust.rustsymPath": "/Users/akagi201/.cargo/bin/",
    "rust.rustLangSrcPath": "/Users/akagi201/Documents/rust-lang/rust/src",
    "rust.cargoPath": "/Users/akagi201/.cargo/bin/",
    "rust.cargoHomePath": "/Users/akagi201/.cargo",
    "rust.formatOnSave": false,
    "rust.checkWith": "check",
    "rust.useJsonErrors": false,
    "rust.useNewErrorFormat": true,
    "editor.wordWrap": true,

    // Go configuration
    "go.formatTool": "goimports",
    "go.docsTool": "gogetdoc",

    // Remote VSCode configuration
    "remote.port": 52698,
    "remote.onstartup": true,
    "remote.host": "127.0.0.1",
    "workbench.iconTheme": "vs-seti",
    "[cpp]": {
      "editor.quickSuggestions": false
    },
    "[c]": {
      "editor.quickSuggestions": false
    },
    // Vim Configuration
    "vim.easymotion": true,
    "vim.hlsearch": true
  }