Last active
September 7, 2019 12:06
-
-
Save tscholl2/b86d719746d1f7e2e8e7d36b7031391f to your computer and use it in GitHub Desktop.
vscode 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
# 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' |
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
set-window-option -g xterm-keys on |
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
{ | |
"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