summaryrefslogtreecommitdiffstats
path: root/powershell
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2023-11-23 22:01:36 -0500
committerMitsuo Tokumori <[email protected]>2023-11-23 22:01:36 -0500
commit19487f950f1c28fd8403d8ce320300c0b8517b82 (patch)
tree265890a174d2e4ea3258b9f55546a45aa305ffb5 /powershell
parent1621463f17260f560fac5cf2745fe970e8e0190c (diff)
downloaddotfiles-19487f950f1c28fd8403d8ce320300c0b8517b82.tar.gz
dotfiles-19487f950f1c28fd8403d8ce320300c0b8517b82.tar.bz2
dotfiles-19487f950f1c28fd8403d8ce320300c0b8517b82.zip
Define EDITOR and VISUAL env vars
Diffstat (limited to 'powershell')
-rw-r--r--powershell/Microsoft.PowerShell_profile.ps119
1 files changed, 0 insertions, 19 deletions
diff --git a/powershell/Microsoft.PowerShell_profile.ps1 b/powershell/Microsoft.PowerShell_profile.ps1
deleted file mode 100644
index fc55bac..0000000
--- a/powershell/Microsoft.PowerShell_profile.ps1
+++ /dev/null
@@ -1,19 +0,0 @@
-# Access this file using $PROFILE
-#
-# By default, powershell does not allow execution of non-signed scripts
-# > Get-ExecutionPolicy
-# > Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
-#
-# Home directory:
-# cmd.exe: %USERPROFILE%
-# Powershell: $ENV:USERPROFILE
-#
-# To break long commands in Powershell use a trailing backtick (`)
-
-# Custom colored prompt
-# Ref.: https://stackoverflow.com/questions/6297072
-function prompt
-{
- Write-Host "PS $(get-location)`n>" -nonewline -foregroundcolor DarkCyan
- return ' '
-}