Skip to content

Instantly share code, notes, and snippets.

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

Burak BOZ BurakBoz

🏠
Working from home
View GitHub Profile
@BurakBoz
BurakBoz / .zshrc
Last active October 8, 2023 03:11 — forked from jamiebullock/.zshrc
Manjaro zshrc adapted for Mac
## Options section
setopt correct # Auto correct mistakes
setopt extendedglob # Extended globbing. Allows using regular expressions with *
setopt nocaseglob # Case insensitive globbing
setopt rcexpandparam # Array expension with parameters
setopt nocheckjobs # Don't warn about running processes when exiting
setopt numericglobsort # Sort filenames numerically when it makes sense
setopt appendhistory # Immediately append history instead of overwriting
setopt histignorealldups # If a new command is a duplicate, remove the older one
@BurakBoz
BurakBoz / allow
Last active July 18, 2020 12:22 — forked from Nilpo/allow
CSF Allow AND Ignore Cloudflare IP's.
for i in `curl https://www.cloudflare.com/ips-v4`; do csf -a $i; done
for i in `curl https://www.cloudflare.com/ips-v6`; do csf -a $i; done