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
| # General Terminal | |
| alias ls="ls -ltraG --color" | |
| alias c="clear" | |
| alias f="firewall-cmd" | |
| alias d="docker" | |
| alias nightlight="redshift-gtk -O 5000" | |
| # Gradle | |
| alias grd="./gradlew" | |
| alias grdc="./gradlew clean" |
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
| { | |
| // ... | |
| // Custom workbench color scheme for easier visability: | |
| "workbench.colorCustomizations": { | |
| "debugView.stateLabelForeground": "#ff0000", | |
| "debugTokenExpression.string": "#a4ea85", | |
| "debugTokenExpression.name": "#82cdff", | |
| "debugTokenExpression.number": "#ff76e8", | |
| "debugTokenExpression.value": "#ffe14a" | |
| }, |