How to configure Sublime Text 3 for professional software development on Ubuntu 19.10.
This file contains 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
alias jdk='export JDK_HOME="$(brew --prefix openjdk)"; export JAVA_HOME="$JDK_HOME"; [[ ":$PATH:" =~ :$JAVA_HOME/bin: ]] || PATH="$JAVA_HOME/bin:$PATH"; brew unlink openjdk; brew link --overwrite openjdk' | |
alias jdk11='export JDK_HOME="$(brew --prefix openjdk@11)"; export JAVA_HOME="$JDK_HOME"; [[ ":$PATH:" =~ :$JAVA_HOME/bin: ]] || PATH="$JAVA_HOME/bin:$PATH"; brew unlink openjdk@11; brew link --overwrite openjdk@11' | |
alias cp="cp -i" # confirm operation | |
alias dc="docker-compose" # docker-compose is for starting an image, a DOCKERFILE is for creating an image | |
alias dcb="docker-compose run --rm --build" # build and run, remove when done | |
alias dcr="docker-compose run --rm" # run an image and remove when done | |
alias df="df -h" # list file system info in human readable format | |
alias dfsort= |
This file contains 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
Show hidden characters
{ | |
"trailing_spaces_include_current_line": false, | |
"trailing_spaces_modified_lines_only": true, | |
"trailing_spaces_trim_on_save": false | |
} |
This file contains 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
[flake8] | |
exclude = .git | |
max-line-length = 119 |
This file contains 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
{ | |
"globals": { | |
"background": "hsl(195, 13%, 6%)", | |
"line_highlight": "hsl(203, 16%, 10%)", | |
}, | |
} |
This file contains 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
{ | |
"terminal": "/usr/bin/tilix" | |
} |
This file contains 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
{ | |
"node_modules": { | |
"linux": "~/.nvm/versions/node/v13.5.0/lib/node_modules" | |
} | |
} |
This file contains 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
{ | |
"node_path": | |
{ | |
"windows": "C:/Program Files/nodejs/node.exe", | |
"linux": "~/.nvm/versions/node/v13.5.0/bin/node", | |
"osx": "/usr/local/bin/node" | |
} | |
} |
This file contains 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
{ | |
"prettier_cli_path": "~/.nvm/versions/node/v13.5.0/bin/prettier", | |
"node_path": "~/.nvm/versions/node/v13.5.0/bin/node", | |
"prettier_options": { | |
"printWidth": 100, | |
"singleQuote": true, | |
"semi": false | |
} | |
} |
This file contains 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
{ | |
"all": { | |
"end_with_newline": true, | |
"indent_size": 2 | |
}, | |
"custom": { | |
"*.sublime-@(settings|keymap|commands|menu)": { | |
"indent_size": 2, | |
"brace_style": "expand" | |
} |
NewerOlder