Skip to content

Instantly share code, notes, and snippets.

@tscholl2
Last active September 7, 2019 12:06
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 tscholl2/b86d719746d1f7e2e8e7d36b7031391f to your computer and use it in GitHub Desktop.
Save tscholl2/b86d719746d1f7e2e8e7d36b7031391f to your computer and use it in GitHub Desktop.
vscode settings
# Color prompt
PS1='\[\033[1;36m\]\u\[\033[1;31m\]@\[\033[1;32m\]\h\[\033[1;31m\]:\[\033[1;35m\]\w\[\033[1;31m\]\$\[\033[0m\] '
## Colorize the ls output
alias ls='ls --color=auto'
set-window-option -g xterm-keys on
{
"editor.fontSize": 16,
"editor.tabSize": 2,
"editor.rulers": [100],
"workbench.editor.enablePreview": true,
"editor.fontFamily": "'go mono', 'Courier New', monospace, 'Droid Sans Fallback'",
"go.gopath": "/home/t/go",
"python.pythonPath": "/home/t/projects/venv/bin/python",
"prettier.trailingComma": "all",
"prettier.printWidth": 100,
"workbench.startupEditor": "newUntitledFile"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment