Skip to content

Instantly share code, notes, and snippets.

View OmidNejadabbasi's full-sized avatar
💭
😶

Omid Nezhadabbasi OmidNejadabbasi

💭
😶
View GitHub Profile
@adojos
adojos / oh-my-posh_WinPS_Install.md
Last active May 18, 2024 15:11
Oh-My-Posh Installation on Win PowerShell v5.1 #powershell

Oh-My-Posh Installation on Windows PowerShell v5.1


1. Installation

There are number of ways you can install Oh-My-Posh. But commonly you install Oh-My-Posh either from PSGallery by using PowerShell's 'Install-Module' command or with Oh-My-Posh supplied platform-specific install instructions like 'Winget' on their website. Hence you can choose to run any one of the following.

If you want to use 'winget', run following:

winget install JanDeDobbeleer.OhMyPosh -s winget
@mh-firouzjah
mh-firouzjah / better_powershell.md
Last active July 5, 2024 07:27
how to add zsh-like theme and feature to windows powershell

Better PowerShell

Theme | History | KeyBinding

MyPowershell

in order to make windows powershell more comfortable and add a some theme and features like history binding, auto complete on keypress and so on, if you have used linux teminl wiht zsh for example, we are going to make powershell like that as much as we can.

What we will achieve

@nhtranngoc
nhtranngoc / pythonListing.tex
Last active March 16, 2023 20:48
LaTex settings for embedding Python with Monokai theme
\usepackage{listings}
\usepackage{fontspec}
\setmonofont{Consolas}
\definecolor{background}{RGB}{39, 40, 34}
\definecolor{string}{RGB}{230, 219, 116}
\definecolor{comment}{RGB}{117, 113, 94}
\definecolor{normal}{RGB}{248, 248, 242}
\definecolor{identifier}{RGB}{166, 226, 46}