Skip to content

Instantly share code, notes, and snippets.

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

Мирослав Здравковић mikizdr

🏠
Working from home
View GitHub Profile
@mikizdr
mikizdr / .bashrc
Last active January 23, 2026 13:17
.bashrc used across dev envs
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@mikizdr
mikizdr / aliases.sh
Last active November 20, 2023 19:41
Short command aliases for git bach
# Some good standards, which are not used if the user
# creates his/her own .bashrc/.bash_profile
# --show-control-chars: help showing Korean or accented characters
alias ls='ls -F --color=auto --show-control-chars'
alias ll='ls -l'
# ----------------------
# Laravel artisan commands
# ----------------------