Skip to content

Instantly share code, notes, and snippets.

View uroshm's full-sized avatar
🏠
Working from home

Uros Milojkovic uroshm

🏠
Working from home
View GitHub Profile
@uroshm
uroshm / .zshrc
Created February 26, 2025 15:46
Terminal Aliases
# 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"
@uroshm
uroshm / settings.json
Created June 29, 2024 18:39
VS Code Custom settings.json Properties
{
// ...
// Custom workbench color scheme for easier visability:
"workbench.colorCustomizations": {
"debugView.stateLabelForeground": "#ff0000",
"debugTokenExpression.string": "#a4ea85",
"debugTokenExpression.name": "#82cdff",
"debugTokenExpression.number": "#ff76e8",
"debugTokenExpression.value": "#ffe14a"
},