Skip to content

Latest commit

 

History

History
101 lines (77 loc) · 2.67 KB

Tooling Configuration.md

File metadata and controls

101 lines (77 loc) · 2.67 KB

Cmder

https://cmder.app Can use mini if Git installed. Using Full will not put git in path for use by windows terminal, fyi

Far Manager

https://farmanager.com/download.php?l=en

Integrate into Cmder Cmder --> Settings --> Startup --> Tasks: "Add/Refresh default tasks" Image

BONUS: TreeView
> far:config
# Panel.Tree.TurnOffCompletely = false
# F9, Left/Right, Tree Panel (F9, L/R, T|I|V
)

Micro

https://github.com/zyedidia/micro

Windows Terminal

Install Windows Terminal from Store

Default Terminal w/new build: Image Image

After "Get" from WIndows Store: Image

Settings: Image

Install Oh My Posh

[Windows | Oh My Posh](https://ohmyposh.dev/docs/installation/windows)
- Manual Install
	```ps
	Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://ohmyposh.dev/install.ps1'))
	```

Install Fonts (Ligature Support, Powerline Glyphs)

- FiraCode
- JetBrains Mono
- SourceCodePro
	oh-my-posh font install

Image

Can set per profile, or default
  • Per profile:

Image

Image

  • Default: Image

Change Your Prompt

Change your prompt | Oh My Posh

notepad $PROFILE
# If error thrown, run
New-Item -Path $PROFILE -Type File -Force
#then
notepad $PROFILE

Add "oh-my-posh init pwsh | Invoke-Expression" (Do not include quotes) to profile

Reload new (edited) profile:

> . $PROFILE

Image

Customize | Oh My Posh

## oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/jandedobbeleer.omp.json" | Invoke-Expression
## oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/multiverse-neon.omp.json" | Invoke-Expression
## oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/patriksvensson.omp.json" | Invoke-Expression

Themes: https://ohmyposh.dev/docs/themes Image

Terminal Icons:

Image

Install-Module -Name Terminal-Icons -Repository PSGallery
# notepad $PROFILE
Import-Module -Name Terminal-Icons

Image