Created
          September 22, 2017 13:21 
        
      - 
      
 - 
        
Save n8e/0b0349c764d584a84dd7797dc7452035 to your computer and use it in GitHub Desktop.  
    vs-code custom settings
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "workbench.sideBar.location": "left", | |
| "editor.fontFamily": "Ubuntu Mono,Source Code Pro, Menlo, Monaco, 'Courier New', monospace", | |
| "editor.fontSize": 16, | |
| "workbench.editor.showTabs": false, | |
| "editor.tabSize": 2, | |
| "files.hotExit": "off", | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/.DS_Store": true, | |
| "**/lcov-report": true, | |
| "coverage/coverage.json": true, | |
| "coverage/lcov.info": true, | |
| "**/target/doc": true, | |
| "**/target/rls": true, | |
| "**/target/debug": true, | |
| "**/target/release": true | |
| }, | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/bower_components": true | |
| }, | |
| "eslint.autoFixOnSave": true, | |
| // Columns at which to show vertical rulers | |
| "editor.rulers": [ | |
| 100 | |
| ], | |
| "editor.renderIndentGuides": true, | |
| "editor.dragAndDrop": true, | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.emptySelectionClipboard": false, | |
| "workbench.iconTheme": "flatland-icon-theme", | |
| "terminal.integrated.fontFamily": "ubuntu mono", | |
| "terminal.integrated.fontSize": 16, | |
| "editor.autoIndent": true, | |
| "editor.fontLigatures": true, | |
| "workbench.fontAliasing": "antialiased", | |
| "extensions.ignoreRecommendations": false, | |
| "rust-client.revealOutputChannelOn": "info", | |
| "rust-client.showStdErr": true, | |
| "window.titleBarStyle": "custom", | |
| "workbench.colorTheme": "DesertEx" | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment