Skip to content

Commit

Permalink
fix(pwsh): fixing environment variable identifier typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
Botond Kalocsai committed Apr 2, 2024
1 parent d9475c4 commit 2cf6778
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions home/Documents/PowerShell/Variables.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$EnvironmentVarablesSetup = @{
XDG_DATA_HOME = "$HOME/.local/share"
XDG_CONFIG_HOME = "$HOME/.confg"
XDG_STATE_HOME = "$HOME/.local/state"
XDG_CACHE_HOME = "$HOME/.cache"
$EnvironmentVariablesSetup = @{
XDG_DATA_HOME = "$HOME\.local/share"
XDG_CONFIG_HOME = "$HOME\.confg"
XDG_STATE_HOME = "$HOME\.local/state"
XDG_CACHE_HOME = "$HOME\.cache"
EDITOR = "nvim"
VISUAL = "nvim"
PAGER = "moar"
Expand Down

0 comments on commit 2cf6778

Please sign in to comment.