Skip to content

Instantly share code, notes, and snippets.

View doct0rX's full-sized avatar
🎯
Calculated.

Mustafa doct0rX

🎯
Calculated.
View GitHub Profile
@doct0rX
doct0rX / .zshrc
Last active April 23, 2021 15:00
My oh_my_zsh file config in .zshrc [on my Mac Saturday, April 17, 2021]
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="path/to/new/ohmyzsh/folder"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
@doct0rX
doct0rX / profile.ps1
Created January 14, 2022 12:18 — forked from JustinGrote/profile.ps1
VSCode Default Dark+ Terminal Theme (VSCode Settings, Windows Terminal profiles.json, PSReadline profile.ps1)
#PSReadline theme to match VSCode editor colors
if ($env:TERM_PROGRAM -eq 'VSCode' -or $env:WT_SESSION) {
if ($psedition -eq 'core') {
$ansiesc = "`e"
} else {
$ansiesc = [char]0x1b
}
Set-PSReadlineOption -Colors @{
Command = "$($ansiesc)[93m"