My 'Powerlevel10k Theme' config for Oh-my-zsh on GitBash (Win)
# Generated by Powerlevel10k configuration wizard on 2021-10-07 at 22:49 GMTST.
import java.text.DecimalFormat; | |
import java.text.NumberFormat; | |
import java.util.Locale; | |
public class DecimalFormatWithLocale { | |
public static void main(String[] args) { | |
double dbNum = 170180.24523D; |
import java.text.DecimalFormat; | |
public class DecimalFormatter { | |
public static void main(String[] args) { | |
double dbNum = 170180.24523D; // number to be formatted | |
/* Basic Formatting Process */ |
fzf [+Enter] | |
fzf -e [+Enter] | |
cd /** [+Tab] | |
ssh ** [+Tab] | |
find . -type f | fzf [+Enter] |
## ------------------ | |
## General Settings | |
## ------------------ | |
# make tmux display things in 256 colors | |
set -g default-terminal "screen-256color" | |
# set scrollback history to 2000 (10k) | |
set -g history-limit 2000 |
package automationproject; | |
import java.io.IOException; | |
import java.net.MalformedURLException; | |
import java.net.HttpURLConnection; | |
import java.util.Iterator; | |
import java.net.URL; | |
import java.util.List; | |
import org.openqa.selenium.*; | |
import org.openqa.selenium.chrome.ChromeDriver; | |
public class MyBrokenLinks { |
My 'Paradox Theme' json config for Oh-my-posh on Windows PowerShell
AllUsersAllHosts - C:\Windows\System32\WindowsPowerShell\v1.0\profile.ps1
AllUsersCurrentHost - C:\Windows\System32\WindowsPowerShell\v1.0\Microsoft.PowerShell_profile.ps1
My 'nu4a Theme' json config for Oh-my-posh on Windows PowerShell
AllUsersAllHosts - C:\Windows\System32\WindowsPowerShell\v1.0\profile.ps1
AllUsersCurrentHost - C:\Windows\System32\WindowsPowerShell\v1.0\Microsoft.PowerShell_profile.ps1
My 'Aliens Theme' json config for Oh-my-posh on Windows PowerShell
AllUsersAllHosts - C:\Windows\System32\WindowsPowerShell\v1.0\profile.ps1
AllUsersCurrentHost - C:\Windows\System32\WindowsPowerShell\v1.0\Microsoft.PowerShell_profile.ps1
The 'Git for Windows' by default does not come with MSYS2 package manager called 'Pacman' and hence it is a limited version or subset of the MSYS2. Also the bash which supplied wih 'Git for Windows' is not a full version of bash hence does not provide for full Linux environment.
However you can get package manager support inside 'Git for Windows' in following ways :