Created
July 25, 2018 03:17
-
-
Save thinkgarden/28225687e976514e8c10955fe5095ec7 to your computer and use it in GitHub Desktop.
settings backup
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
// Place your settings in this file to overwrite the default settings | |
{ | |
// The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on. | |
"editor.tabSize": 2, | |
// Format a file on save. A formatter must be available, the file must not be auto-saved, and editor must not be shutting down. | |
"editor.formatOnSave": true, | |
// Controls whether the editor should render indent guides | |
"editor.renderIndentGuides": true, | |
// TypeScript | |
// Defines space handling after function keyword for anonymous functions | |
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
// Enable/disable the references code lens | |
"typescript.referencesCodeLens.enabled": true, | |
// JavasSript | |
// Defines space handling after function keyword for anonymous functions | |
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
// Files | |
// Control whether a new line is inserted at the end of the file. | |
"files.insertFinalNewline": true, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/.DS_Store": true, | |
"**/bower_components": true | |
}, | |
// HTML | |
// Enable/disable default HTML formatter (requires restart) | |
"html.format.enable": false, | |
// JSON | |
// Enable/disable default JSON formatter (requires restart) | |
"json.format.enable": false, | |
// Terminal | |
// The path of the shell that the terminal uses on OS X. | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"window.zoomLevel": 0, | |
"workbench.activityBar.visible": true, | |
"workbench.sideBar.location": "left", | |
"workbench.statusBar.visible": true, | |
"editor.wordWrap": "off", | |
"workbench.iconTheme": "vs-seti", | |
"java.errors.incompleteClasspath.severity": "ignore", | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 2000, | |
"workbench.colorTheme": "Twilight", | |
"editor.fontSize": 16, | |
"editor.fontFamily": "source code pro", | |
"editor.fontLigatures": true, | |
"vim.disableAnnoyingNeovimMessage": true, | |
"vim.useCtrlKeys": true, | |
"vim.useSystemClipboard": true, | |
"vim.insertModeKeyBindings": [ { | |
"before": ["j", "j"], | |
"after": ["<Esc>"] | |
} | |
], | |
"git.enableSmartCommit": true, | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": true | |
}, | |
"editor.minimap.enabled": false, | |
"emmet.includeLanguages": { | |
"vue-html": "html", | |
"javascript": "javascriptreact" | |
}, | |
"java.home": "", | |
"explorer.confirmDelete": false | |
} |
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
ZSH_THEME="agnoster" | |
plugins=(git npm osx z) | |
# export MANPATH="/usr/local/man:$MANPATH" | |
export DEFAULT_USER=`whoami` | |
export NVM_DIR=~/.nvm | |
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" | |
export ANDROID_HOME=~/Library/Android/sdk | |
export ANDROID_NDK=~/Library/Android/sdk/android-ndk-r10e | |
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home | |
export PATH=$PATH:$JAVA_HOME/bin | |
export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment