Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chezmoi script doesn't work with powershell script. #2472

Closed
3 tasks done
vunhatchuong opened this issue Oct 19, 2022 · 19 comments
Closed
3 tasks done

Chezmoi script doesn't work with powershell script. #2472

vunhatchuong opened this issue Oct 19, 2022 · 19 comments
Labels
support Support request

Comments

@vunhatchuong
Copy link

What exactly are you trying to do?

Chezmoi script run_ doesn't work with powershell script(ps1).

When I try to apply the run_ powershell scripts the script return

At C:\Users\Ronny\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1:1 char:17
+ $env:USERPROFILE\.config\powershell\user_profile.ps1
+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Unexpected token '\.config\powershell\user_profile.ps1' in expression or statement.
    + CategoryInfo          : ParserError: (:) [], ParseException
    + FullyQualifiedErrorId : UnexpectedToken

Even though I can execute it normally through terminal. I know I can use .bat but I want to use .ps1

The run_once-test.bat file indicated with R, even after applying it. It's still in chezmoi status so I can apply it multiple times without it's content changing.

What have you tried so far?

  • Run powershell with no profile.
  • Run powershell with $ENV:shell="cmd" or "pwsh".

Where else have you checked for solutions?

Output of any commands you've tried with --verbose flag

diff --git a/once-test.bat b/once-test.bat
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..211f200e3bd2b13ece6e738815610688fb7e2ce2 100755
--- a/once-test.bat
+++ b/once-test.bat
@@ -0,0 +1 @@
+echo Testing

C:\Users\Ronny>echo Testing
Testing

Output of chezmoi doctor

RESULT    CHECK                MESSAGE
ok        version              v2.25.0, commit b3a8879e30a20134c9bef48646055e57aa78d8c5, built at 2022-10-13T14:01:32Z, built by goreleaser
ok        latest-version       v2.25.0
ok        os-arch              windows/amd64
ok        systeminfo           Microsoft Windows 10 Pro (10.0.19043 N/A Build 19043)
ok        go-version           go1.19.2 (gc)
ok        executable           ~/scoop/apps/chezmoi/current/chezmoi.exe
ok        upgrade-method       replace-executable
ok        config-file          ~/.config/chezmoi/chezmoi.toml, last modified 2022-10-19T20:10:14+07:00
warning   source-dir           ~/.local/share/chezmoi is a git working tree (dirty)
warning   suspicious-entries   ~/.local/share/chezmoi/dot_config/chezmoi/chezmoi.toml
warning   working-tree         ~/.local/share/chezmoi is a git working tree (dirty)
ok        dest-dir             ~ is a directory
ok        cd-command           found C:/Program Files/WindowsApps/Microsoft.PowerShell_7.2.6.0_x64__8wekyb3d8bbwe/pwsh.exe
ok        cd-args              'C:\\Program Files\\WindowsApps\\Microsoft.PowerShell_7.2.6.0_x64__8wekyb3d8bbwe\\pwsh.exe'
info      diff-command         not set
ok        edit-command         found ~/scoop/shims/nvim.exe
ok        edit-args            nvim
ok        git-command          found C:/Program Files/Git/cmd/git.exe, version 2.36.1
ok        merge-command        found ~/scoop/shims/nvim.exe
ok        shell-command        found C:/Program Files/WindowsApps/Microsoft.PowerShell_7.2.6.0_x64__8wekyb3d8bbwe/pwsh.exe
ok        shell-args           'C:\\Program Files\\WindowsApps\\Microsoft.PowerShell_7.2.6.0_x64__8wekyb3d8bbwe\\pwsh.exe'
info      age-command          age not found in $PATH
info      gpg-command          gpg not found in $PATH
info      pinentry-command     not set
info      1password-command    op not found in $PATH
info      bitwarden-command    bw not found in $PATH
info      gopass-command       gopass not found in $PATH
info      keepassxc-command    keepassxc-cli not found in $PATH
info      keepassxc-db         not set
info      keeper-command       keeper not found in $PATH
info      lastpass-command     lpass not found in $PATH
info      pass-command         pass not found in $PATH
info      passhole-command     ph not found in $PATH
info      vault-command        vault not found in $PATH
info      secret-command       not set
@vunhatchuong vunhatchuong added the support Support request label Oct 19, 2022
@bradenhilton
Copy link
Collaborator

The run_once-test.bat file indicated with R, even after applying it. It's still in chezmoi status so I can apply it multiple times without it's content changing.
...

diff --git a/once-test.bat b/once-test.bat
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..211f200e3bd2b13ece6e738815610688fb7e2ce2 100755
--- a/once-test.bat
+++ b/once-test.bat
@@ -0,0 +1 @@
+echo Testing

The script is currently being evaluated to a run_ script with the name once-test.bat.

The underscores are important here. It should be run_once_test.bat

@vunhatchuong
Copy link
Author

The script is currently being evaluated to a run_ script with the name once-test.bat.

The underscores are important here. It should be run_once_test.bat

I can't believe I didn't see that... I'm able to run the script now, but that powershell script still output errors mentioned above on run.

@bradenhilton
Copy link
Collaborator

That error is from PowerShell, not chezmoi.

Can you share the contents of the files that are not working?

@vunhatchuong
Copy link
Author

It's just a normal echo, or even empty script file. I think the problem is how Chezmoi execute scripts, not powershell since I can run it normally.

@twpayne
Copy link
Owner

twpayne commented Oct 19, 2022

What is the output of chezmoi apply --debug? I'm particularly interested in the lines that contain test.bat.

@vunhatchuong
Copy link
Author

I'm just gonna copy lines that have error. This is an empty run_onchange_test.bat.

2022-10-19T21:49:10+07:00 INF persistentPreRunRootE args=["C:\\Users\\Ronny\\scoop\\apps\\chezmoi\\current\\chezmoi.exe","apply","--debug"] goVersion=go1.19.2 version={"builtBy":"goreleaser","commit":"b3a8879e30a20134c9bef48646055e57aa78d8c5","date":"2022-10-13T14:01:32Z","version":"2.25.0"}
2022-10-19T21:49:10+07:00 INF Stat component=system name=C:/Users/Ronny/.config/chezmoi/chezmoistate.boltdb
2022-10-19T21:49:10+07:00 INF Stat component=system name=C:/Users/Ronny/.local/share/chezmoi
2022-10-19T21:49:10+07:00 INF Stat component=system name=C:/Users/Ronny/.local/share/chezmoi/.git
2022-10-19T21:49:10+07:00 ERR ReadFile error="open C:/Users/Ronny/.local/share/chezmoi/.chezmoiroot: The system cannot find the file specified." component=system data= name=C:/Users/Ronny/.local/share/chezmoi/.chezmoiroot size=0
2022-10-19T21:49:10+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi
2022-10-19T21:49:10+07:00 ERR Mkdir error="mkdir C:/Users/Ronny/.config/chezmoi: Cannot create a file when that file already exists." component=system name=C:/Users/Ronny/.config/chezmoi perm=511
2022-10-19T21:49:10+07:00 INF Stat component=system name=C:/Users/Ronny/.config/chezmoi
2022-10-19T21:49:10+07:00 INF Get bucket=configState component=persistentState key=configState value=
2022-10-19T21:49:10+07:00 ERR ReadFile error="open C:/Users/Ronny/.local/share/chezmoi/.chezmoiversion: The system cannot find the file specified." component=system data= name=C:/Users/Ronny/.local/share/chezmoi/.chezmoiversion size=0
...
2022-10-19T21:49:11+07:00 ERR Lstat error="CreateFile C:/Users/Ronny/test.bat: The system cannot find the file specified." component=system name=C:/Users/Ronny/test.bat

@bradenhilton
Copy link
Collaborator

@vunhatchuong123 this error

At C:\Users\Ronny\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1:1 char:17
+ $env:USERPROFILE\.config\powershell\user_profile.ps1
+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Unexpected token '\.config\powershell\user_profile.ps1' in expression or statement.
    + CategoryInfo          : ParserError: (:) [], ParseException
    + FullyQualifiedErrorId : UnexpectedToken

can be eliminated by surrounding the path with double-quotes:

"$env:USERPROFILE\.config\powershell\user_profile.ps1"

@vunhatchuong
Copy link
Author

@bradenhilton I did. And it works fine , only Chezmoi for some reason show error.

@bradenhilton
Copy link
Collaborator

@vunhatchuong123 please do share the contents of the files and the full output of chezmoi apply --debug so we can investigate further.

@vunhatchuong
Copy link
Author

vunhatchuong commented Oct 19, 2022

My powershell_profile.ps1 contains only 1 line.

. "$env:USERPROFILE\.config\powershell\user_profile.ps1"

This is an empty run_onchange_tast.bat.

Debug output
2022-10-19T22:26:58+07:00 INF persistentPreRunRootE args=["C:\\Users\\Ronny\\scoop\\apps\\chezmoi\\current\\chezmoi.exe","apply","--debug"] goVersion=go1.19.2 version={"builtBy":"goreleaser","commit":"b3a8879e30a20134c9bef48646055e57aa78d8c5","date":"2022-10-13T14:01:32Z","version":"2.25.0"}
2022-10-19T22:26:58+07:00 INF Stat component=system name=C:/Users/Ronny/.config/chezmoi/chezmoistate.boltdb
2022-10-19T22:26:58+07:00 INF Stat component=system name=C:/Users/Ronny/.local/share/chezmoi
2022-10-19T22:26:58+07:00 INF Stat component=system name=C:/Users/Ronny/.local/share/chezmoi/.git
2022-10-19T22:26:58+07:00 ERR ReadFile error="open C:/Users/Ronny/.local/share/chezmoi/.chezmoiroot: The system cannot find the file specified." component=system data= name=C:/Users/Ronny/.local/share/chezmoi/.chezmoiroot size=0
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi
2022-10-19T22:26:58+07:00 ERR Mkdir error="mkdir C:/Users/Ronny/.config/chezmoi: Cannot create a file when that file already exists." component=system name=C:/Users/Ronny/.config/chezmoi perm=511
2022-10-19T22:26:58+07:00 INF Stat component=system name=C:/Users/Ronny/.config/chezmoi
2022-10-19T22:26:58+07:00 INF Get bucket=configState component=persistentState key=configState value=
2022-10-19T22:26:58+07:00 ERR ReadFile error="open C:/Users/Ronny/.local/share/chezmoi/.chezmoiversion: The system cannot find the file specified." component=system data= name=C:/Users/Ronny/.local/share/chezmoi/.chezmoiversion size=0
2022-10-19T22:26:58+07:00 INF Stat component=system name=C:/Users/Ronny/.local/share/chezmoi
2022-10-19T22:26:58+07:00 INF Stat component=system name=C:/Users/Ronny/.local/share/chezmoi
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="README.md\r\nsetup.ps1\r\ninstall-programs.ps1.old\r\n.\\run_once_insta..." name=C:/Users/Ronny/.local/share/chezmoi/.chezmoiignore size=72
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/.chezmoiscripts
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/Packages
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/Dexpot
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/Dexpot/profile
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/Microsoft
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/Microsoft/Windows
2022-10-19T22:26:58+07:00 INF ReadDir component=system name="C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/Microsoft/Windows/Start Menu"
2022-10-19T22:26:58+07:00 INF ReadDir component=system name="C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/Microsoft/Windows/Start Menu/Programs"
2022-10-19T22:26:58+07:00 INF ReadDir component=system name="C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup"
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/alacritty
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/alacritty/themes
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/Documents
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/Documents/PowerShell
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/dot_config
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/dot_config/chezmoi
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell
2022-10-19T22:26:58+07:00 INF ReadDir component=system name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="$ErrorActionPreference = \"Stop\" # exit when command fails\r\n\r\n#se..." name=C:/Users/Ronny/.local/share/chezmoi/.chezmoiscripts/run_once_install-packages.ps1 size=5377
2022-10-19T22:26:58+07:00 INF Get bucket=scriptState component=persistentState key=4a548d4101ff5a6a325d2a5f1fdcedc47a3956d1f2c7c18b0005bd10de373b4d value="{\n  \"name\": \".chezmoiscripts/install-packages.ps1\",\n  \"runAt\": \"2022-10-19T14:25:30.8293806Z\"\n}\n"
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=.config
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/chezmoi
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/chezmoi value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=.config/chezmoi
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="[edit]\r\n    command = \"nvim\"\r\n[merge]\r\n    command = \"nvim\"\r\n   ..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/chezmoi/chezmoi.toml size=136
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/chezmoi/chezmoi.toml
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/chezmoi/chezmoi.toml value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"a21704d7a57528754d558c061a4196f8d811d1252f5172ab45f6e544dca708c0\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="[edit]\r\n    command = \"nvim\"\r\n[merge]\r\n    command = \"nvim\"\r\n   ..." name=C:/Users/Ronny/.config/chezmoi/chezmoi.toml size=136
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"a21704d7a57528754d558c061a4196f8d811d1252f5172ab45f6e544dca708c0","Mode":438,"Type":"file","contents":"[edit]\r\n    command = \"nvim\"\r\n[merge]\r\n    command = \"nvim\"\r\n   ..."} lastWrittenEntryState={"ContentsSHA256":"a21704d7a57528754d558c061a4196f8d811d1252f5172ab45f6e544dca708c0","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"a21704d7a57528754d558c061a4196f8d811d1252f5172ab45f6e544dca708c0","Mode":438,"Type":"file","contents":"[edit]\r\n    command = \"nvim\"\r\n[merge]\r\n    command = \"nvim\"\r\n   ..."} targetRelPath=.config/chezmoi/chezmoi.toml
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=.config/powershell
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=.config/powershell/themes
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/1_shell.omp.json size=3837
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/1_shell.omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/1_shell.omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"d9c658760e2d0022f398e29527b40597cf23859b35d83aeb36a3fe444831d740\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/1_shell.omp.json size=3837
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"d9c658760e2d0022f398e29527b40597cf23859b35d83aeb36a3fe444831d740","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"d9c658760e2d0022f398e29527b40597cf23859b35d83aeb36a3fe444831d740","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"d9c658760e2d0022f398e29527b40597cf23859b35d83aeb36a3fe444831d740","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/1_shell.omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/1_shell_omp.json size=3855
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/1_shell_omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/1_shell_omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"7b5284bea67c16ee46864028d90a32b88a3a26311cd6effe916cf0abe96e60f9\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/1_shell_omp.json size=3855
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"7b5284bea67c16ee46864028d90a32b88a3a26311cd6effe916cf0abe96e60f9","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"7b5284bea67c16ee46864028d90a32b88a3a26311cd6effe916cf0abe96e60f9","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"7b5284bea67c16ee46864028d90a32b88a3a26311cd6effe916cf0abe96e60f9","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/1_shell_omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/amro.omp.json size=1488
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/amro.omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/amro.omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"435011a98211bc91beb9876ef43aa54e3b0f32f025525099b7dba82f2ad3c8cc\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/amro.omp.json size=1488
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"435011a98211bc91beb9876ef43aa54e3b0f32f025525099b7dba82f2ad3c8cc","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"435011a98211bc91beb9876ef43aa54e3b0f32f025525099b7dba82f2ad3c8cc","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"435011a98211bc91beb9876ef43aa54e3b0f32f025525099b7dba82f2ad3c8cc","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/amro.omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/bubblesline.omp.json size=4524
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/bubblesline.omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/bubblesline.omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"e4905c4f303ddf2934586ecb02afb4f9ba2817a08db8f2294a80a3601c38f441\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/bubblesline.omp.json size=4524
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"e4905c4f303ddf2934586ecb02afb4f9ba2817a08db8f2294a80a3601c38f441","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"e4905c4f303ddf2934586ecb02afb4f9ba2817a08db8f2294a80a3601c38f441","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"e4905c4f303ddf2934586ecb02afb4f9ba2817a08db8f2294a80a3601c38f441","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/bubblesline.omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/catppuccin.omp.json size=2016
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/catppuccin.omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/catppuccin.omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"1cfbd85a52c712ded7c3088a5efbd862ef1d3aba9c6e1cc2e2873bc16501f4db\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/catppuccin.omp.json size=2016
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"1cfbd85a52c712ded7c3088a5efbd862ef1d3aba9c6e1cc2e2873bc16501f4db","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"1cfbd85a52c712ded7c3088a5efbd862ef1d3aba9c6e1cc2e2873bc16501f4db","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"1cfbd85a52c712ded7c3088a5efbd862ef1d3aba9c6e1cc2e2873bc16501f4db","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/catppuccin.omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/catppuccin_frappe.omp.json size=1794
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/catppuccin_frappe.omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/catppuccin_frappe.omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"c15c6b4ceedaa47092c4d565be3b38b3b36fca5b4a114f1ee15ac7df247bf5f7\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/catppuccin_frappe.omp.json size=1794
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"c15c6b4ceedaa47092c4d565be3b38b3b36fca5b4a114f1ee15ac7df247bf5f7","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"c15c6b4ceedaa47092c4d565be3b38b3b36fca5b4a114f1ee15ac7df247bf5f7","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"c15c6b4ceedaa47092c4d565be3b38b3b36fca5b4a114f1ee15ac7df247bf5f7","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/catppuccin_frappe.omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/catppuccin_latte.omp.json size=1794
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/catppuccin_latte.omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/catppuccin_latte.omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"3c0c7a2d64528a02fa5eb47d30224c179b3cc67776631adba6cedd7f989561e7\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/catppuccin_latte.omp.json size=1794
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"3c0c7a2d64528a02fa5eb47d30224c179b3cc67776631adba6cedd7f989561e7","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"3c0c7a2d64528a02fa5eb47d30224c179b3cc67776631adba6cedd7f989561e7","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"3c0c7a2d64528a02fa5eb47d30224c179b3cc67776631adba6cedd7f989561e7","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/catppuccin_latte.omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/catppuccin_macchiato.omp.json size=1792
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/catppuccin_macchiato.omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/catppuccin_macchiato.omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"081a2285b3553c31dee4bc0166b25330311d42d7cde5e43a86abd14c50f7fd94\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/catppuccin_macchiato.omp.json size=1792
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"081a2285b3553c31dee4bc0166b25330311d42d7cde5e43a86abd14c50f7fd94","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"081a2285b3553c31dee4bc0166b25330311d42d7cde5e43a86abd14c50f7fd94","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"081a2285b3553c31dee4bc0166b25330311d42d7cde5e43a86abd14c50f7fd94","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/catppuccin_macchiato.omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/catppuccin_mocha.omp.json size=1792
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/catppuccin_mocha.omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/catppuccin_mocha.omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"21b3d50ba38935ec29fa2ede48d20a271a1869c38b1b22072901d657af809013\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/catppuccin_mocha.omp.json size=1792
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"21b3d50ba38935ec29fa2ede48d20a271a1869c38b1b22072901d657af809013","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"21b3d50ba38935ec29fa2ede48d20a271a1869c38b1b22072901d657af809013","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"21b3d50ba38935ec29fa2ede48d20a271a1869c38b1b22072901d657af809013","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/catppuccin_mocha.omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/multiverse-neon.omp.json size=3635
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/multiverse-neon.omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/multiverse-neon.omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"b74145122a4f8899efd3fcbb8becc1aeb81ac9e5a30f2ccd4530bc2bda60ea13\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/multiverse-neon.omp.json size=3635
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"b74145122a4f8899efd3fcbb8becc1aeb81ac9e5a30f2ccd4530bc2bda60ea13","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"b74145122a4f8899efd3fcbb8becc1aeb81ac9e5a30f2ccd4530bc2bda60ea13","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"b74145122a4f8899efd3fcbb8becc1aeb81ac9e5a30f2ccd4530bc2bda60ea13","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/multiverse-neon.omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/tokyonight_storm.omp.json size=4107
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/tokyonight_storm.omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/tokyonight_storm.omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"39f8d1e44e8f89ce21fada76fc391fac04640bdf231413397387f91ad40669bc\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/tokyonight_storm.omp.json size=4107
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"39f8d1e44e8f89ce21fada76fc391fac04640bdf231413397387f91ad40669bc","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"39f8d1e44e8f89ce21fada76fc391fac04640bdf231413397387f91ad40669bc","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"39f8d1e44e8f89ce21fada76fc391fac04640bdf231413397387f91ad40669bc","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/tokyonight_storm.omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/themes/velvet.omp.json size=5430
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/themes/velvet.omp.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/themes/velvet.omp.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"e40492e7659933aad43b2c19d9d8b23274de358bcc8186d1a28facbecf1a350a\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..." name=C:/Users/Ronny/.config/powershell/themes/velvet.omp.json size=5430
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"e40492e7659933aad43b2c19d9d8b23274de358bcc8186d1a28facbecf1a350a","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} lastWrittenEntryState={"ContentsSHA256":"e40492e7659933aad43b2c19d9d8b23274de358bcc8186d1a28facbecf1a350a","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"e40492e7659933aad43b2c19d9d8b23274de358bcc8186d1a28facbecf1a350a","Mode":438,"Type":"file","contents":"{\r\n  \"$schema\": \"https://raw.githubusercontent.com/JanDeDobbelee..."} targetRelPath=.config/powershell/themes/velvet.omp.json
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="# set PowerShell to UTF-8\r\n[console]::InputEncoding = [console]:..." name=C:/Users/Ronny/.local/share/chezmoi/dot_config/powershell/user_profile.ps1 size=2723
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/.config/powershell/user_profile.ps1
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/.config/powershell/user_profile.ps1 value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"0cf1d1ce990a8e25fab4081c75f222785fb32b05b51d4e1627993ac97d82e4c3\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="# set PowerShell to UTF-8\r\n[console]::InputEncoding = [console]:..." name=C:/Users/Ronny/.config/powershell/user_profile.ps1 size=2723
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"0cf1d1ce990a8e25fab4081c75f222785fb32b05b51d4e1627993ac97d82e4c3","Mode":438,"Type":"file","contents":"# set PowerShell to UTF-8\r\n[console]::InputEncoding = [console]:..."} lastWrittenEntryState={"ContentsSHA256":"0cf1d1ce990a8e25fab4081c75f222785fb32b05b51d4e1627993ac97d82e4c3","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"0cf1d1ce990a8e25fab4081c75f222785fb32b05b51d4e1627993ac97d82e4c3","Mode":438,"Type":"file","contents":"# set PowerShell to UTF-8\r\n[console]::InputEncoding = [console]:..."} targetRelPath=.config/powershell/user_profile.ps1
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Local
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/Packages
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/Packages value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Local/Packages
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="�PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\a�\x00\x00\x048\b\x06\x00\x00\x00���C\x00\x00 \x00IDATx^��O�U��/��\x0e�\x1a\x03r.�8���..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/ctpayamir.png size=72370
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/ctpayamir.png
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/ctpayamir.png value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"bf6bf11a4895eb4ea26f31cd0bc9ede9fa83e1793d70c2d1be1e6e7184b23789\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="�PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\a�\x00\x00\x048\b\x06\x00\x00\x00���C\x00\x00 \x00IDATx^��O�U��/��\x0e�\x1a\x03r.�8���..." name=C:/Users/Ronny/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/ctpayamir.png size=72370
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"bf6bf11a4895eb4ea26f31cd0bc9ede9fa83e1793d70c2d1be1e6e7184b23789","Mode":438,"Type":"file","contents":"�PNG\r\n\u001a\n\u0000\u0000\u0000\rIHDR\u0000\u0000\u0007�\u0000\u0000\u00048\u0008\u0006\u0000\u0000\u0000���C\u0000\u0000 \u0000IDATx^��O�U��/��\u000e�\u001a\u0003r.�8���..."} lastWrittenEntryState={"ContentsSHA256":"bf6bf11a4895eb4ea26f31cd0bc9ede9fa83e1793d70c2d1be1e6e7184b23789","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"bf6bf11a4895eb4ea26f31cd0bc9ede9fa83e1793d70c2d1be1e6e7184b23789","Mode":438,"Type":"file","contents":"�PNG\r\n\u001a\n\u0000\u0000\u0000\rIHDR\u0000\u0000\u0007�\u0000\u0000\u00048\u0008\u0006\u0000\u0000\u0000���C\u0000\u0000 \u0000IDATx^��O�U��/��\u000e�\u001a\u0003r.�8���..."} targetRelPath=AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/ctpayamir.png
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\n    \"$help\": \"https://aka.ms/terminal-documentation\",\n    \"$sc..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/settings.json size=13368
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/settings.json
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/settings.json value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"f7dbe9e66c509025efa30f3b9b57d7447a9963f28924b5e422a6d561f5fd0dbe\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="{\n    \"$help\": \"https://aka.ms/terminal-documentation\",\n    \"$sc..." name=C:/Users/Ronny/AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/settings.json size=13368
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"f7dbe9e66c509025efa30f3b9b57d7447a9963f28924b5e422a6d561f5fd0dbe","Mode":438,"Type":"file","contents":"{\n    \"$help\": \"https://aka.ms/terminal-documentation\",\n    \"$sc..."} lastWrittenEntryState={"ContentsSHA256":"f7dbe9e66c509025efa30f3b9b57d7447a9963f28924b5e422a6d561f5fd0dbe","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"f7dbe9e66c509025efa30f3b9b57d7447a9963f28924b5e422a6d561f5fd0dbe","Mode":438,"Type":"file","contents":"{\n    \"$help\": \"https://aka.ms/terminal-documentation\",\n    \"$sc..."} targetRelPath=AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/settings.json
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Local/nvim
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="-- Settings\r\nrequire \"core.options\"\r\nrequire \"core.keymappings\"\r..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/init.lua size=783
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/init.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/init.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"1259d6424f4b7892bd63d6dc713529dc94c4bdc173cae75df57014610df5a4b1\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="-- Settings\r\nrequire \"core.options\"\r\nrequire \"core.keymappings\"\r..." name=C:/Users/Ronny/AppData/Local/nvim/init.lua size=783
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"1259d6424f4b7892bd63d6dc713529dc94c4bdc173cae75df57014610df5a4b1","Mode":438,"Type":"file","contents":"-- Settings\r\nrequire \"core.options\"\r\nrequire \"core.keymappings\"\r..."} lastWrittenEntryState={"ContentsSHA256":"1259d6424f4b7892bd63d6dc713529dc94c4bdc173cae75df57014610df5a4b1","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"1259d6424f4b7892bd63d6dc713529dc94c4bdc173cae75df57014610df5a4b1","Mode":438,"Type":"file","contents":"-- Settings\r\nrequire \"core.options\"\r\nrequire \"core.keymappings\"\r..."} targetRelPath=AppData/Local/nvim/init.lua
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Local/nvim/lua
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Local/nvim/lua/core
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="\r\nlocal augroup = vim.api.nvim_create_augroup\r\ngeneral_setting =..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/autocommands.lua size=808
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/autocommands.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/autocommands.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"fb07963d6b8ccb1259478d5d773e4f40297e7239cc9d8ec029f65a4cf712e36b\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="\r\nlocal augroup = vim.api.nvim_create_augroup\r\ngeneral_setting =..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/autocommands.lua size=808
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"fb07963d6b8ccb1259478d5d773e4f40297e7239cc9d8ec029f65a4cf712e36b","Mode":438,"Type":"file","contents":"\r\nlocal augroup = vim.api.nvim_create_augroup\r\ngeneral_setting =..."} lastWrittenEntryState={"ContentsSHA256":"fb07963d6b8ccb1259478d5d773e4f40297e7239cc9d8ec029f65a4cf712e36b","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"fb07963d6b8ccb1259478d5d773e4f40297e7239cc9d8ec029f65a4cf712e36b","Mode":438,"Type":"file","contents":"\r\nlocal augroup = vim.api.nvim_create_augroup\r\ngeneral_setting =..."} targetRelPath=AppData/Local/nvim/lua/core/autocommands.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="require(\"bufferline\").setup{}\r\n" name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/bufferline.lua size=31
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/bufferline.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/bufferline.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"bf8fba340aedcce965ec9cc4b3040395211c776da34aadd1bec3b599dd93ed2c\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="require(\"bufferline\").setup{}\r\n" name=C:/Users/Ronny/AppData/Local/nvim/lua/core/bufferline.lua size=31
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"bf8fba340aedcce965ec9cc4b3040395211c776da34aadd1bec3b599dd93ed2c","Mode":438,"Type":"file","contents":"require(\"bufferline\").setup{}\r\n"} lastWrittenEntryState={"ContentsSHA256":"bf8fba340aedcce965ec9cc4b3040395211c776da34aadd1bec3b599dd93ed2c","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"bf8fba340aedcce965ec9cc4b3040395211c776da34aadd1bec3b599dd93ed2c","Mode":438,"Type":"file","contents":"require(\"bufferline\").setup{}\r\n"} targetRelPath=AppData/Local/nvim/lua/core/bufferline.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local cmp_status_ok, cmp = pcall(require, \"cmp\")\r\nif not cmp_sta..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/cmp.lua size=3458
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/cmp.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/cmp.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"26a429198c587c185bf9c9995b4147d475808b06093b1b5908ecd62f022dbb58\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local cmp_status_ok, cmp = pcall(require, \"cmp\")\r\nif not cmp_sta..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/cmp.lua size=3458
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"26a429198c587c185bf9c9995b4147d475808b06093b1b5908ecd62f022dbb58","Mode":438,"Type":"file","contents":"local cmp_status_ok, cmp = pcall(require, \"cmp\")\r\nif not cmp_sta..."} lastWrittenEntryState={"ContentsSHA256":"26a429198c587c185bf9c9995b4147d475808b06093b1b5908ecd62f022dbb58","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"26a429198c587c185bf9c9995b4147d475808b06093b1b5908ecd62f022dbb58","Mode":438,"Type":"file","contents":"local cmp_status_ok, cmp = pcall(require, \"cmp\")\r\nif not cmp_sta..."} targetRelPath=AppData/Local/nvim/lua/core/cmp.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local colorscheme = \"catppuccin\"\r\nlocal status_ok, _ = pcall(vim..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/colorscheme.lua size=140
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/colorscheme.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/colorscheme.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"8991b378db28249622708cfc20cb92ff1fc93d709a0ebe051d6d25477acf2972\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local colorscheme = \"catppuccin\"\r\nlocal status_ok, _ = pcall(vim..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/colorscheme.lua size=140
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"8991b378db28249622708cfc20cb92ff1fc93d709a0ebe051d6d25477acf2972","Mode":438,"Type":"file","contents":"local colorscheme = \"catppuccin\"\r\nlocal status_ok, _ = pcall(vim..."} lastWrittenEntryState={"ContentsSHA256":"8991b378db28249622708cfc20cb92ff1fc93d709a0ebe051d6d25477acf2972","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"8991b378db28249622708cfc20cb92ff1fc93d709a0ebe051d6d25477acf2972","Mode":438,"Type":"file","contents":"local colorscheme = \"catppuccin\"\r\nlocal status_ok, _ = pcall(vim..."} targetRelPath=AppData/Local/nvim/lua/core/colorscheme.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, comment = pcall(require, \"Comment\")\r\nif not sta..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/comment.lua size=900
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/comment.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/comment.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"49818b458eb35f370435c8c167c461876a568011fb099d59bebe83d6647e4356\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, comment = pcall(require, \"Comment\")\r\nif not sta..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/comment.lua size=900
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"49818b458eb35f370435c8c167c461876a568011fb099d59bebe83d6647e4356","Mode":438,"Type":"file","contents":"local status_ok, comment = pcall(require, \"Comment\")\r\nif not sta..."} lastWrittenEntryState={"ContentsSHA256":"49818b458eb35f370435c8c167c461876a568011fb099d59bebe83d6647e4356","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"49818b458eb35f370435c8c167c461876a568011fb099d59bebe83d6647e4356","Mode":438,"Type":"file","contents":"local status_ok, comment = pcall(require, \"Comment\")\r\nif not sta..."} targetRelPath=AppData/Local/nvim/lua/core/comment.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, gitsigns = pcall(require, \"gitsigns\")\r\nif not s..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/gitsigns.lua size=1708
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/gitsigns.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/gitsigns.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"5b931919f26bca0dec1a1bee4028fa50012cef38b51c4a6adef13c16439ca5cf\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, gitsigns = pcall(require, \"gitsigns\")\r\nif not s..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/gitsigns.lua size=1708
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"5b931919f26bca0dec1a1bee4028fa50012cef38b51c4a6adef13c16439ca5cf","Mode":438,"Type":"file","contents":"local status_ok, gitsigns = pcall(require, \"gitsigns\")\r\nif not s..."} lastWrittenEntryState={"ContentsSHA256":"5b931919f26bca0dec1a1bee4028fa50012cef38b51c4a6adef13c16439ca5cf","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"5b931919f26bca0dec1a1bee4028fa50012cef38b51c4a6adef13c16439ca5cf","Mode":438,"Type":"file","contents":"local status_ok, gitsigns = pcall(require, \"gitsigns\")\r\nif not s..."} targetRelPath=AppData/Local/nvim/lua/core/gitsigns.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="-- default configuration\r\nrequire('illuminate').configure({\r\n   ..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/illuminate.lua size=2605
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/illuminate.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/illuminate.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"a276a3529c17867a15e7057d9dd980090f3e5787bf8e4e1d26c583d48ca79166\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="-- default configuration\r\nrequire('illuminate').configure({\r\n   ..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/illuminate.lua size=2605
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"a276a3529c17867a15e7057d9dd980090f3e5787bf8e4e1d26c583d48ca79166","Mode":438,"Type":"file","contents":"-- default configuration\r\nrequire('illuminate').configure({\r\n   ..."} lastWrittenEntryState={"ContentsSHA256":"a276a3529c17867a15e7057d9dd980090f3e5787bf8e4e1d26c583d48ca79166","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"a276a3529c17867a15e7057d9dd980090f3e5787bf8e4e1d26c583d48ca79166","Mode":438,"Type":"file","contents":"-- default configuration\r\nrequire('illuminate').configure({\r\n   ..."} targetRelPath=AppData/Local/nvim/lua/core/illuminate.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, impatient = pcall(require, \"impatient\")\r\nif not..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/impatient.lua size=126
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/impatient.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/impatient.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"03c31c7ce8dc6c2cdb9034ed3e6d1d13c3f067f30a902e178021f26a6fa8f14f\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, impatient = pcall(require, \"impatient\")\r\nif not..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/impatient.lua size=126
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"03c31c7ce8dc6c2cdb9034ed3e6d1d13c3f067f30a902e178021f26a6fa8f14f","Mode":438,"Type":"file","contents":"local status_ok, impatient = pcall(require, \"impatient\")\r\nif not..."} lastWrittenEntryState={"ContentsSHA256":"03c31c7ce8dc6c2cdb9034ed3e6d1d13c3f067f30a902e178021f26a6fa8f14f","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"03c31c7ce8dc6c2cdb9034ed3e6d1d13c3f067f30a902e178021f26a6fa8f14f","Mode":438,"Type":"file","contents":"local status_ok, impatient = pcall(require, \"impatient\")\r\nif not..."} targetRelPath=AppData/Local/nvim/lua/core/impatient.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, indent_blankline = pcall(require, \"indent_blank..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/indentline.lua size=2187
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/indentline.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/indentline.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"9bcab02e4d6f8610199ed29373f421bcc58748bbcda53783ae037f7ee30fa34e\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, indent_blankline = pcall(require, \"indent_blank..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/indentline.lua size=2187
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"9bcab02e4d6f8610199ed29373f421bcc58748bbcda53783ae037f7ee30fa34e","Mode":438,"Type":"file","contents":"local status_ok, indent_blankline = pcall(require, \"indent_blank..."} lastWrittenEntryState={"ContentsSHA256":"9bcab02e4d6f8610199ed29373f421bcc58748bbcda53783ae037f7ee30fa34e","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"9bcab02e4d6f8610199ed29373f421bcc58748bbcda53783ae037f7ee30fa34e","Mode":438,"Type":"file","contents":"local status_ok, indent_blankline = pcall(require, \"indent_blank..."} targetRelPath=AppData/Local/nvim/lua/core/indentline.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, hints = pcall(require, \"lsp-inlayhints\")\r\nif no..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/inlay-hint.lua size=112
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/inlay-hint.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/inlay-hint.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"cdeb913ab5f6c7a6474350461eae6bb8551d335eb019720cc022359deabb495c\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, hints = pcall(require, \"lsp-inlayhints\")\r\nif no..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/inlay-hint.lua size=112
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"cdeb913ab5f6c7a6474350461eae6bb8551d335eb019720cc022359deabb495c","Mode":438,"Type":"file","contents":"local status_ok, hints = pcall(require, \"lsp-inlayhints\")\r\nif no..."} lastWrittenEntryState={"ContentsSHA256":"cdeb913ab5f6c7a6474350461eae6bb8551d335eb019720cc022359deabb495c","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"cdeb913ab5f6c7a6474350461eae6bb8551d335eb019720cc022359deabb495c","Mode":438,"Type":"file","contents":"local status_ok, hints = pcall(require, \"lsp-inlayhints\")\r\nif no..."} targetRelPath=AppData/Local/nvim/lua/core/inlay-hint.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local opts = { noremap = true, silent = true }\r\n\r\nlocal term_opt..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/keymappings.lua size=2886
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/keymappings.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/keymappings.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"9c3bbbcde6c1413de2e5d601f6709edaa379014e66a7f97406528ad23ef0c07f\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local opts = { noremap = true, silent = true }\r\n\r\nlocal term_opt..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/keymappings.lua size=2886
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"9c3bbbcde6c1413de2e5d601f6709edaa379014e66a7f97406528ad23ef0c07f","Mode":438,"Type":"file","contents":"local opts = { noremap = true, silent = true }\r\n\r\nlocal term_opt..."} lastWrittenEntryState={"ContentsSHA256":"9c3bbbcde6c1413de2e5d601f6709edaa379014e66a7f97406528ad23ef0c07f","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"9c3bbbcde6c1413de2e5d601f6709edaa379014e66a7f97406528ad23ef0c07f","Mode":438,"Type":"file","contents":"local opts = { noremap = true, silent = true }\r\n\r\nlocal term_opt..."} targetRelPath=AppData/Local/nvim/lua/core/keymappings.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="-- Eviline config for lualine\n-- Author: shadmansaleh\n-- Credit:..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/lualine.lua size=5251
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/lualine.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/lualine.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"fdcfbcc29635f73f0ed4a5313cfe430129378566b19d79e47e02d279d8d235b5\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="-- Eviline config for lualine\n-- Author: shadmansaleh\n-- Credit:..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/lualine.lua size=5251
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"fdcfbcc29635f73f0ed4a5313cfe430129378566b19d79e47e02d279d8d235b5","Mode":438,"Type":"file","contents":"-- Eviline config for lualine\n-- Author: shadmansaleh\n-- Credit:..."} lastWrittenEntryState={"ContentsSHA256":"fdcfbcc29635f73f0ed4a5313cfe430129378566b19d79e47e02d279d8d235b5","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"fdcfbcc29635f73f0ed4a5313cfe430129378566b19d79e47e02d279d8d235b5","Mode":438,"Type":"file","contents":"-- Eviline config for lualine\n-- Author: shadmansaleh\n-- Credit:..."} targetRelPath=AppData/Local/nvim/lua/core/lualine.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="require(\"mason\").setup({\r\n    ui = {\r\n        icons = {\r\n       ..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/mason.lua size=668
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/mason.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/mason.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"f3abdde023b872d1fe70ad3ae059e2d48dc6828a044e587c8da4920bed7be426\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="require(\"mason\").setup({\r\n    ui = {\r\n        icons = {\r\n       ..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/mason.lua size=668
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"f3abdde023b872d1fe70ad3ae059e2d48dc6828a044e587c8da4920bed7be426","Mode":438,"Type":"file","contents":"require(\"mason\").setup({\r\n    ui = {\r\n        icons = {\r\n       ..."} lastWrittenEntryState={"ContentsSHA256":"f3abdde023b872d1fe70ad3ae059e2d48dc6828a044e587c8da4920bed7be426","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"f3abdde023b872d1fe70ad3ae059e2d48dc6828a044e587c8da4920bed7be426","Mode":438,"Type":"file","contents":"require(\"mason\").setup({\r\n    ui = {\r\n        icons = {\r\n       ..."} targetRelPath=AppData/Local/nvim/lua/core/mason.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="require('neoscroll').setup({\r\n    -- All these keys will be mapp..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/neoscroll.lua size=922
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/neoscroll.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/neoscroll.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"7ea2f8f1295dd31cbc78d41165d1ecf7615dcd4328b8d95c1700a933452df23a\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="require('neoscroll').setup({\r\n    -- All these keys will be mapp..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/neoscroll.lua size=922
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"7ea2f8f1295dd31cbc78d41165d1ecf7615dcd4328b8d95c1700a933452df23a","Mode":438,"Type":"file","contents":"require('neoscroll').setup({\r\n    -- All these keys will be mapp..."} lastWrittenEntryState={"ContentsSHA256":"7ea2f8f1295dd31cbc78d41165d1ecf7615dcd4328b8d95c1700a933452df23a","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"7ea2f8f1295dd31cbc78d41165d1ecf7615dcd4328b8d95c1700a933452df23a","Mode":438,"Type":"file","contents":"require('neoscroll').setup({\r\n    -- All these keys will be mapp..."} targetRelPath=AppData/Local/nvim/lua/core/neoscroll.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local null_ls_status_ok, null_ls = pcall(require, \"null-ls\")\r\nif..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/null-ls.lua size=893
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/null-ls.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/null-ls.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"0d5f3c1796f46aad347a712bcf12f46a1bdd5b8b8ce615271798a2435ed34182\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local null_ls_status_ok, null_ls = pcall(require, \"null-ls\")\r\nif..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/null-ls.lua size=893
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"0d5f3c1796f46aad347a712bcf12f46a1bdd5b8b8ce615271798a2435ed34182","Mode":438,"Type":"file","contents":"local null_ls_status_ok, null_ls = pcall(require, \"null-ls\")\r\nif..."} lastWrittenEntryState={"ContentsSHA256":"0d5f3c1796f46aad347a712bcf12f46a1bdd5b8b8ce615271798a2435ed34182","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"0d5f3c1796f46aad347a712bcf12f46a1bdd5b8b8ce615271798a2435ed34182","Mode":438,"Type":"file","contents":"local null_ls_status_ok, null_ls = pcall(require, \"null-ls\")\r\nif..."} targetRelPath=AppData/Local/nvim/lua/core/null-ls.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, nvim_tree = pcall(require, \"nvim-tree\")\r\nif not..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/nvim-tree.lua size=1724
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/nvim-tree.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/nvim-tree.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"64c89c421610f4512d68834f58e7ca855f10dad8828b8ca833aa8a4efc1fd3ce\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, nvim_tree = pcall(require, \"nvim-tree\")\r\nif not..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/nvim-tree.lua size=1724
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"64c89c421610f4512d68834f58e7ca855f10dad8828b8ca833aa8a4efc1fd3ce","Mode":438,"Type":"file","contents":"local status_ok, nvim_tree = pcall(require, \"nvim-tree\")\r\nif not..."} lastWrittenEntryState={"ContentsSHA256":"64c89c421610f4512d68834f58e7ca855f10dad8828b8ca833aa8a4efc1fd3ce","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"64c89c421610f4512d68834f58e7ca855f10dad8828b8ca833aa8a4efc1fd3ce","Mode":438,"Type":"file","contents":"local status_ok, nvim_tree = pcall(require, \"nvim-tree\")\r\nif not..."} targetRelPath=AppData/Local/nvim/lua/core/nvim-tree.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local options = {\r\n\tclipboard = \"unnamedplus\", -- allows neovim ..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/options.lua size=3413
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/options.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/options.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"ea4445e40ec516ee1a1662dcc59dbf388f5149b28be04f0b0df5460e1dcf7bf7\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local options = {\r\n\tclipboard = \"unnamedplus\", -- allows neovim ..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/options.lua size=3413
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"ea4445e40ec516ee1a1662dcc59dbf388f5149b28be04f0b0df5460e1dcf7bf7","Mode":438,"Type":"file","contents":"local options = {\r\n\tclipboard = \"unnamedplus\", -- allows neovim ..."} lastWrittenEntryState={"ContentsSHA256":"ea4445e40ec516ee1a1662dcc59dbf388f5149b28be04f0b0df5460e1dcf7bf7","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"ea4445e40ec516ee1a1662dcc59dbf388f5149b28be04f0b0df5460e1dcf7bf7","Mode":438,"Type":"file","contents":"local options = {\r\n\tclipboard = \"unnamedplus\", -- allows neovim ..."} targetRelPath=AppData/Local/nvim/lua/core/options.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local fn = vim.fn\r\n\r\n-- Automatically install packer\r\nlocal inst..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/plugins.lua size=4710
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/plugins.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/plugins.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"b62fabea5d1e055e5d3ac332cc55a2572b4f27e74d50605cb0e8ce30641e7845\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local fn = vim.fn\r\n\r\n-- Automatically install packer\r\nlocal inst..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/plugins.lua size=4710
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"b62fabea5d1e055e5d3ac332cc55a2572b4f27e74d50605cb0e8ce30641e7845","Mode":438,"Type":"file","contents":"local fn = vim.fn\r\n\r\n-- Automatically install packer\r\nlocal inst..."} lastWrittenEntryState={"ContentsSHA256":"b62fabea5d1e055e5d3ac332cc55a2572b4f27e74d50605cb0e8ce30641e7845","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"b62fabea5d1e055e5d3ac332cc55a2572b4f27e74d50605cb0e8ce30641e7845","Mode":438,"Type":"file","contents":"local fn = vim.fn\r\n\r\n-- Automatically install packer\r\nlocal inst..."} targetRelPath=AppData/Local/nvim/lua/core/plugins.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, telescope = pcall(require, \"telescope\")\r\nif not..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/telescope.lua size=3131
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/telescope.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/telescope.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"e3b9d45c420f09b3e42902aa698f4ab81d4085f3c976b445c2d8550273048e12\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, telescope = pcall(require, \"telescope\")\r\nif not..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/telescope.lua size=3131
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"e3b9d45c420f09b3e42902aa698f4ab81d4085f3c976b445c2d8550273048e12","Mode":438,"Type":"file","contents":"local status_ok, telescope = pcall(require, \"telescope\")\r\nif not..."} lastWrittenEntryState={"ContentsSHA256":"e3b9d45c420f09b3e42902aa698f4ab81d4085f3c976b445c2d8550273048e12","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"e3b9d45c420f09b3e42902aa698f4ab81d4085f3c976b445c2d8550273048e12","Mode":438,"Type":"file","contents":"local status_ok, telescope = pcall(require, \"telescope\")\r\nif not..."} targetRelPath=AppData/Local/nvim/lua/core/telescope.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, toggleterm = pcall(require, \"toggleterm\")\r\nif n..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/toggleterm.lua size=1011
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/toggleterm.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/toggleterm.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"b99ef5a2eb8b6d956acfe383a27f4d87f8510f1cd38c340f71775c8b612bf64e\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, toggleterm = pcall(require, \"toggleterm\")\r\nif n..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/toggleterm.lua size=1011
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"b99ef5a2eb8b6d956acfe383a27f4d87f8510f1cd38c340f71775c8b612bf64e","Mode":438,"Type":"file","contents":"local status_ok, toggleterm = pcall(require, \"toggleterm\")\r\nif n..."} lastWrittenEntryState={"ContentsSHA256":"b99ef5a2eb8b6d956acfe383a27f4d87f8510f1cd38c340f71775c8b612bf64e","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"b99ef5a2eb8b6d956acfe383a27f4d87f8510f1cd38c340f71775c8b612bf64e","Mode":438,"Type":"file","contents":"local status_ok, toggleterm = pcall(require, \"toggleterm\")\r\nif n..."} targetRelPath=AppData/Local/nvim/lua/core/toggleterm.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="require'nvim-treesitter.configs'.setup {\r\n  -- A list of parser ..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/treesitter.lua size=916
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/treesitter.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/treesitter.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"760dff1daf9226f557772db4597aa92e4aec431cc86115b0aaf6953d6910b3cc\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="require'nvim-treesitter.configs'.setup {\r\n  -- A list of parser ..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/treesitter.lua size=916
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"760dff1daf9226f557772db4597aa92e4aec431cc86115b0aaf6953d6910b3cc","Mode":438,"Type":"file","contents":"require'nvim-treesitter.configs'.setup {\r\n  -- A list of parser ..."} lastWrittenEntryState={"ContentsSHA256":"760dff1daf9226f557772db4597aa92e4aec431cc86115b0aaf6953d6910b3cc","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"760dff1daf9226f557772db4597aa92e4aec431cc86115b0aaf6953d6910b3cc","Mode":438,"Type":"file","contents":"require'nvim-treesitter.configs'.setup {\r\n  -- A list of parser ..."} targetRelPath=AppData/Local/nvim/lua/core/treesitter.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, zen_mode = pcall(require, \"zen-mode\")\r\nif not s..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/core/zen-mode.lua size=1836
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/core/zen-mode.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/core/zen-mode.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"0a82eab1b0dd9656f01f5ac0d88847ee98d193e3c7105d44e2e5df8cd2b36c4a\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local status_ok, zen_mode = pcall(require, \"zen-mode\")\r\nif not s..." name=C:/Users/Ronny/AppData/Local/nvim/lua/core/zen-mode.lua size=1836
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"0a82eab1b0dd9656f01f5ac0d88847ee98d193e3c7105d44e2e5df8cd2b36c4a","Mode":438,"Type":"file","contents":"local status_ok, zen_mode = pcall(require, \"zen-mode\")\r\nif not s..."} lastWrittenEntryState={"ContentsSHA256":"0a82eab1b0dd9656f01f5ac0d88847ee98d193e3c7105d44e2e5df8cd2b36c4a","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"0a82eab1b0dd9656f01f5ac0d88847ee98d193e3c7105d44e2e5df8cd2b36c4a","Mode":438,"Type":"file","contents":"local status_ok, zen_mode = pcall(require, \"zen-mode\")\r\nif not s..."} targetRelPath=AppData/Local/nvim/lua/core/zen-mode.lua
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local function is_match_empty(pat, plain)\n    return not not str..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Local/nvim/lua/split.lua size=892
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Local/nvim/lua/split.lua
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Local/nvim/lua/split.lua value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"c28d97b312d47095019736e6a24f8c99e55324c499754cd9f1ba025a95caca2d\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="local function is_match_empty(pat, plain)\n    return not not str..." name=C:/Users/Ronny/AppData/Local/nvim/lua/split.lua size=892
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"c28d97b312d47095019736e6a24f8c99e55324c499754cd9f1ba025a95caca2d","Mode":438,"Type":"file","contents":"local function is_match_empty(pat, plain)\n    return not not str..."} lastWrittenEntryState={"ContentsSHA256":"c28d97b312d47095019736e6a24f8c99e55324c499754cd9f1ba025a95caca2d","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"c28d97b312d47095019736e6a24f8c99e55324c499754cd9f1ba025a95caca2d","Mode":438,"Type":"file","contents":"local function is_match_empty(pat, plain)\n    return not not str..."} targetRelPath=AppData/Local/nvim/lua/split.lua
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Roaming
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/Dexpot
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/Dexpot value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Roaming/Dexpot
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/Dexpot/profile
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/Dexpot/profile value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Roaming/Dexpot/profile
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="[Profil]\r\nFormat=1\r\nSections=447\r\n[Dexpot]\r\nDexpotVersion=1.6.14..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/Dexpot/profile/Main.dxp size=8181
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/Dexpot/profile/Main.dxp
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/Dexpot/profile/Main.dxp value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"124417d5706acb5c98ef35aee8853a4f887dace6cda1ade2917210288fcc50c8\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="[Profil]\r\nFormat=1\r\nSections=447\r\n[Dexpot]\r\nDexpotVersion=1.6.14..." name=C:/Users/Ronny/AppData/Roaming/Dexpot/profile/Main.dxp size=8181
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"124417d5706acb5c98ef35aee8853a4f887dace6cda1ade2917210288fcc50c8","Mode":438,"Type":"file","contents":"[Profil]\r\nFormat=1\r\nSections=447\r\n[Dexpot]\r\nDexpotVersion=1.6.14..."} lastWrittenEntryState={"ContentsSHA256":"124417d5706acb5c98ef35aee8853a4f887dace6cda1ade2917210288fcc50c8","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"124417d5706acb5c98ef35aee8853a4f887dace6cda1ade2917210288fcc50c8","Mode":438,"Type":"file","contents":"[Profil]\r\nFormat=1\r\nSections=447\r\n[Dexpot]\r\nDexpotVersion=1.6.14..."} targetRelPath=AppData/Roaming/Dexpot/profile/Main.dxp
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/Microsoft
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/Microsoft value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Roaming/Microsoft
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/Microsoft/Windows
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/Microsoft/Windows value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Roaming/Microsoft/Windows
2022-10-19T22:26:58+07:00 INF Lstat component=system name="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu"
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu" value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484013,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath="AppData/Roaming/Microsoft/Windows/Start Menu"
2022-10-19T22:26:58+07:00 INF Lstat component=system name="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs"
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs" value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484013,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath="AppData/Roaming/Microsoft/Windows/Start Menu/Programs"
2022-10-19T22:26:58+07:00 INF Lstat component=system name="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup"
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup"
 value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484013\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484013,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484013,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath="AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="; Colemak Mod-DH mapping for matrix boards\n\n;SC010::q\n;SC011::w\n..." name="C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/colemak_dh_matrix.ahk" size=350
2022-10-19T22:26:58+07:00 INF Lstat component=system name="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/colemak_dh_matrix.ahk"
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/colemak_dh_matrix.ahk" value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"520cef7f9dec1b9c1aed162259cb6540e07bec5029b91a234b6979978680c286\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="; Colemak Mod-DH mapping for matrix boards\n\n;SC010::q\n;SC011::w\n..." name="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/colemak_dh_matrix.ahk" size=350
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"520cef7f9dec1b9c1aed162259cb6540e07bec5029b91a234b6979978680c286","Mode":438,"Type":"file","contents":"; Colemak Mod-DH mapping for matrix boards\n\n;SC010::q\n;SC011::w\n..."} lastWrittenEntryState={"ContentsSHA256":"520cef7f9dec1b9c1aed162259cb6540e07bec5029b91a234b6979978680c286","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"520cef7f9dec1b9c1aed162259cb6540e07bec5029b91a234b6979978680c286","Mode":438,"Type":"file","contents":"; Colemak Mod-DH mapping for matrix boards\n\n;SC010::q\n;SC011::w\n..."} targetRelPath="AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/colemak_dh_matrix.ahk"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="��\r\x00\n\x00[\x00.\x00S\x00h\x00e\x00l\x00l\x00C\x00l\x00a\x00s\x00s\x00I\x00n\x00f\x00o\x00]\x00\r\x00\n\x00L\x00o\x00c\x00a\x00l\x00i\x00z\x00e\x00d\x00R\x00..." name="C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/desktop.ini" size=174
2022-10-19T22:26:58+07:00 INF Lstat component=system name="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/desktop.ini"
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/desktop.ini" value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"cdb11958506a5ba5478e22ed472fa3ae422fe9916d674f290207e1fc29ae5a76\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="��\r\x00\n\x00[\x00.\x00S\x00h\x00e\x00l\x00l\x00C\x00l\x00a\x00s\x00s\x00I\x00n\x00f\x00o\x00]\x00\r\x00\n\x00L\x00o\x00c\x00a\x00l\x00i\x00z\x00e\x00d\x00R\x00..." name="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/desktop.ini" size=174
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"cdb11958506a5ba5478e22ed472fa3ae422fe9916d674f290207e1fc29ae5a76","Mode":438,"Type":"file","contents":"��\r\u0000\n\u0000[\u0000.\u0000S\u0000h\u0000e\u0000l\u0000l\u0000C\u0000l\u0000a\u0000s\u0000s\u0000I\u0000n\u0000f\u0000o\u0000]\u0000\r\u0000\n\u0000L\u0000o\u0000c\u0000a\u0000l\u0000i\u0000z\u0000e\u0000d\u0000R\u0000..."} lastWrittenEntryState={"ContentsSHA256":"cdb11958506a5ba5478e22ed472fa3ae422fe9916d674f290207e1fc29ae5a76","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"cdb11958506a5ba5478e22ed472fa3ae422fe9916d674f290207e1fc29ae5a76","Mode":438,"Type":"file","contents":"��\r\u0000\n\u0000[\u0000.\u0000S\u0000h\u0000e\u0000l\u0000l\u0000C\u0000l\u0000a\u0000s\u0000s\u0000I\u0000n\u0000f\u0000o\u0000]\u0000\r\u0000\n\u0000L\u0000o\u0000c\u0000a\u0000l\u0000i\u0000z\u0000e\u0000d\u0000R\u0000..."} targetRelPath="AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/desktop.ini"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="\ufeff; Ortholinear 40% ver | Require QMK or similar software\r\n; #W..." name="C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/hotkeys.ahk" size=1804
2022-10-19T22:26:58+07:00 INF Lstat component=system name="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/hotkeys.ahk"
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/hotkeys.ahk" value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"e94c0e5580882e4406752f5c6faf6860a47497931f870f07b9160b82ae081e82\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="\ufeff; Ortholinear 40% ver | Require QMK or similar software\r\n; #W..." name="C:/Users/Ronny/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/hotkeys.ahk" size=1804
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"e94c0e5580882e4406752f5c6faf6860a47497931f870f07b9160b82ae081e82","Mode":438,"Type":"file","contents":"; Ortholinear 40% ver | Require QMK or similar software\r\n; #W..."} lastWrittenEntryState={"ContentsSHA256":"e94c0e5580882e4406752f5c6faf6860a47497931f870f07b9160b82ae081e82","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"e94c0e5580882e4406752f5c6faf6860a47497931f870f07b9160b82ae081e82","Mode":438,"Type":"file","contents":"; Ortholinear 40% ver | Require QMK or similar software\r\n; #W..."} targetRelPath="AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/hotkeys.ahk"
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/alacritty
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/alacritty value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Roaming/alacritty
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="# Configuration for Alacritty, the GPU enhanced terminal emulato..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/alacritty/alacritty.yml size=32200
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/alacritty/alacritty.yml
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/alacritty/alacritty.yml value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"3c9038ddbbbcb77c48dc61655a705fdd4c61c82a4158669852dfc50629a26ba7\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="# Configuration for Alacritty, the GPU enhanced terminal emulato..." name=C:/Users/Ronny/AppData/Roaming/alacritty/alacritty.yml size=32200
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"3c9038ddbbbcb77c48dc61655a705fdd4c61c82a4158669852dfc50629a26ba7","Mode":438,"Type":"file","contents":"# Configuration for Alacritty, the GPU enhanced terminal emulato..."} lastWrittenEntryState={"ContentsSHA256":"3c9038ddbbbcb77c48dc61655a705fdd4c61c82a4158669852dfc50629a26ba7","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"3c9038ddbbbcb77c48dc61655a705fdd4c61c82a4158669852dfc50629a26ba7","Mode":438,"Type":"file","contents":"# Configuration for Alacritty, the GPU enhanced terminal emulato..."} targetRelPath=AppData/Roaming/alacritty/alacritty.yml
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/alacritty/themes
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/alacritty/themes value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=AppData/Roaming/alacritty/themes
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="colors:\r\n    # Default colors\r\n    primary:\r\n        background:..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/alacritty/themes/catppuccin-frappe.yml size=2203
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-frappe.yml
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-frappe.yml value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"1e4d79c8d8a594826cbb146048accec84205e003487a6ff6122788533bc5313d\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="colors:\r\n    # Default colors\r\n    primary:\r\n        background:..." name=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-frappe.yml size=2203
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"1e4d79c8d8a594826cbb146048accec84205e003487a6ff6122788533bc5313d","Mode":438,"Type":"file","contents":"colors:\r\n    # Default colors\r\n    primary:\r\n        background:..."} lastWrittenEntryState={"ContentsSHA256":"1e4d79c8d8a594826cbb146048accec84205e003487a6ff6122788533bc5313d","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"1e4d79c8d8a594826cbb146048accec84205e003487a6ff6122788533bc5313d","Mode":438,"Type":"file","contents":"colors:\r\n    # Default colors\r\n    primary:\r\n        background:..."} targetRelPath=AppData/Roaming/alacritty/themes/catppuccin-frappe.yml
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="colors:\r\n    # Default colors\r\n    primary:\r\n        background:..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/alacritty/themes/catppuccin-latte.yml size=2203
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-latte.yml
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-latte.yml value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"d59fbbc3f35f9102af19de2b9c4f6bfe050ba91a74d5375c821c2b0a7e22efc3\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="colors:\r\n    # Default colors\r\n    primary:\r\n        background:..." name=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-latte.yml size=2203
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"d59fbbc3f35f9102af19de2b9c4f6bfe050ba91a74d5375c821c2b0a7e22efc3","Mode":438,"Type":"file","contents":"colors:\r\n    # Default colors\r\n    primary:\r\n        background:..."} lastWrittenEntryState={"ContentsSHA256":"d59fbbc3f35f9102af19de2b9c4f6bfe050ba91a74d5375c821c2b0a7e22efc3","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"d59fbbc3f35f9102af19de2b9c4f6bfe050ba91a74d5375c821c2b0a7e22efc3","Mode":438,"Type":"file","contents":"colors:\r\n    # Default colors\r\n    primary:\r\n        background:..."} targetRelPath=AppData/Roaming/alacritty/themes/catppuccin-latte.yml
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="colors:\r\n    # Default colors\r\n    primary:\r\n        background:..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/alacritty/themes/catppuccin-macchiato.yml size=2203
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-macchiato.yml
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-macchiato.yml value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"713f95679f02edbd51ba6b2358f620b67c0927cb6b76dc1ed2e1dc7f5a064e4a\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="colors:\r\n    # Default colors\r\n    primary:\r\n        background:..." name=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-macchiato.yml size=2203
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"713f95679f02edbd51ba6b2358f620b67c0927cb6b76dc1ed2e1dc7f5a064e4a","Mode":438,"Type":"file","contents":"colors:\r\n    # Default colors\r\n    primary:\r\n        background:..."} lastWrittenEntryState={"ContentsSHA256":"713f95679f02edbd51ba6b2358f620b67c0927cb6b76dc1ed2e1dc7f5a064e4a","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"713f95679f02edbd51ba6b2358f620b67c0927cb6b76dc1ed2e1dc7f5a064e4a","Mode":438,"Type":"file","contents":"colors:\r\n    # Default colors\r\n    primary:\r\n        background:..."} targetRelPath=AppData/Roaming/alacritty/themes/catppuccin-macchiato.yml
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="colors:\r\n    primary:\r\n        background: \"#1E1E2E\" # base\r\n   ..." name=C:/Users/Ronny/.local/share/chezmoi/AppData/Roaming/alacritty/themes/catppuccin-mocha.yml size=2181
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-mocha.yml
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-mocha.yml value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"8df6ced59864d415c3d762fb7661eb13ff6d94d21d0ba9e16bd44083886c8833\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data="colors:\r\n    primary:\r\n        background: \"#1E1E2E\" # base\r\n   ..." name=C:/Users/Ronny/AppData/Roaming/alacritty/themes/catppuccin-mocha.yml size=2181
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"8df6ced59864d415c3d762fb7661eb13ff6d94d21d0ba9e16bd44083886c8833","Mode":438,"Type":"file","contents":"colors:\r\n    primary:\r\n        background: \"#1E1E2E\" # base\r\n   ..."} lastWrittenEntryState={"ContentsSHA256":"8df6ced59864d415c3d762fb7661eb13ff6d94d21d0ba9e16bd44083886c8833","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"8df6ced59864d415c3d762fb7661eb13ff6d94d21d0ba9e16bd44083886c8833","Mode":438,"Type":"file","contents":"colors:\r\n    primary:\r\n        background: \"#1E1E2E\" # base\r\n   ..."} targetRelPath=AppData/Roaming/alacritty/themes/catppuccin-mocha.yml
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/Documents
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/Documents value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484013,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=Documents
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/Documents/PowerShell
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/Documents/PowerShell value="{\n  \"type\": \"dir\",\n  \"mode\": 2147484159\n}\n"
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} lastWrittenEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetEntryState={"ContentsSHA256":"","Mode":2147484159,"Type":"dir"} targetRelPath=Documents/PowerShell
2022-10-19T22:26:58+07:00 INF ReadFile component=system data=". \"$env:USERPROFILE\\.config\\powershell\\user_profile.ps1\"\r\n" name=C:/Users/Ronny/.local/share/chezmoi/Documents/PowerShell/Microsoft.PowerShell_profile.ps1 size=58
2022-10-19T22:26:58+07:00 INF Lstat component=system name=C:/Users/Ronny/Documents/PowerShell/Microsoft.PowerShell_profile.ps1
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/Documents/PowerShell/Microsoft.PowerShell_profile.ps1 value="{\n  \"type\": \"file\",\n  \"mode\": 438,\n  \"contentsSHA256\": \"bdcfd7e0b7c165c79605a51291446f205ee0ca71c45e7b36007a102afbad26b4\"\n}\n"
2022-10-19T22:26:58+07:00 INF ReadFile component=system data=". \"$env:USERPROFILE\\.config\\powershell\\user_profile.ps1\"\r\n" name=C:/Users/Ronny/Documents/PowerShell/Microsoft.PowerShell_profile.ps1 size=58
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"bdcfd7e0b7c165c79605a51291446f205ee0ca71c45e7b36007a102afbad26b4","Mode":438,"Type":"file","contents":". \"$env:USERPROFILE\\.config\\powershell\\user_profile.ps1\"\r\n"} lastWrittenEntryState={"ContentsSHA256":"bdcfd7e0b7c165c79605a51291446f205ee0ca71c45e7b36007a102afbad26b4","Mode":438,"Type":"file"} targetEntryState={"ContentsSHA256":"bdcfd7e0b7c165c79605a51291446f205ee0ca71c45e7b36007a102afbad26b4","Mode":438,"Type":"file","contents":". \"$env:USERPROFILE\\.config\\powershell\\user_profile.ps1\"\r\n"} targetRelPath=Documents/PowerShell/Microsoft.PowerShell_profile.ps1
2022-10-19T22:26:58+07:00 INF ReadFile component=system data= name=C:/Users/Ronny/.local/share/chezmoi/run_onchange_tast.bat size=0
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/tast.bat value=
2022-10-19T22:26:58+07:00 ERR Lstat error="CreateFile C:/Users/Ronny/tast.bat: The system cannot find the file specified." component=system name=C:/Users/Ronny/tast.bat
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/tast.bat value=
2022-10-19T22:26:58+07:00 INF defaultPreApplyFunc actualEntryState={"ContentsSHA256":"","Mode":0,"Type":"remove"} lastWrittenEntryState={} targetEntryState={"ContentsSHA256":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","Mode":0,"Type":"script"} targetRelPath=tast.bat
2022-10-19T22:26:58+07:00 INF Get bucket=entryState component=persistentState key=C:/Users/Ronny/tast.bat value=
2022-10-19T22:26:58+07:00 INF Set bucket=scriptState component=persistentState key=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 value="{\n  \"name\": \"tast.bat\",\n  \"runAt\": \"2022-10-19T15:26:58.420815Z\"\n}\n"
2022-10-19T22:26:58+07:00 INF Set bucket=entryState component=persistentState key=C:/Users/Ronny/tast.bat value="{\n  \"type\": \"script\",\n  \"contentsSHA256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}\n"
2022-10-19T22:26:58+07:00 INF Set bucket=entryState component=persistentState key=C:/Users/Ronny/tast.bat value="{\n  \"type\": \"script\",\n  \"contentsSHA256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}\n"
2022-10-19T22:26:58+07:00 INF Close component=persistentState

@bradenhilton
Copy link
Collaborator

@vunhatchuong123 I don't receive any error with an empty run_onchange_test.bat. Still investigating. Perhaps @twpayne can glean something from the debug output.

In the meantime, could you also share the outputs of tree $(chezmoi source-path) /F (from PowerShell, not CMD) and chezmoi managed?

@vunhatchuong
Copy link
Author

vunhatchuong commented Oct 19, 2022

@bradenhilton

Chezmoi tree output
C:\USERS\RONNY\.LOCAL\SHARE\CHEZMOI
│   .chezmoiignore
│   .gitignore
│   install-programs.ps1.old
│   README.md
│   run_onchange_tast.bat
│   setup.ps1
│
├───.chezmoiscripts
│       run_once_install-packages.ps1
│
├───AppData
│   ├───Local
│   │   ├───nvim
│   │   │   │   init.lua
│   │   │   │
│   │   │   └───lua
│   │   │       │   split.lua
│   │   │       │
│   │   │       └───core
│   │   │               autocommands.lua
│   │   │               bufferline.lua
│   │   │               cmp.lua
│   │   │               colorscheme.lua
│   │   │               comment.lua
│   │   │               gitsigns.lua
│   │   │               illuminate.lua
│   │   │               impatient.lua
│   │   │               indentline.lua
│   │   │               inlay-hint.lua
│   │   │               keymappings.lua
│   │   │               lualine.lua
│   │   │               mason.lua
│   │   │               neoscroll.lua
│   │   │               null-ls.lua
│   │   │               nvim-tree.lua
│   │   │               options.lua
│   │   │               plugins.lua
│   │   │               telescope.lua
│   │   │               toggleterm.lua
│   │   │               treesitter.lua
│   │   │               zen-mode.lua
│   │   │
│   │   └───Packages
│   │       └───Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe
│   │           └───LocalState
│   │                   ctpayamir.png
│   │                   settings.json
│   │
│   └───Roaming
│       ├───alacritty
│       │   │   alacritty.yml
│       │   │
│       │   └───themes
│       │           catppuccin-frappe.yml
│       │           catppuccin-latte.yml
│       │           catppuccin-macchiato.yml
│       │           catppuccin-mocha.yml
│       │
│       ├───Dexpot
│       │   └───profile
│       │           Main.dxp
│       │
│       └───Microsoft
│           └───Windows
│               └───Start Menu
│                   └───Programs
│                       └───Startup
│                               colemak_dh_matrix.ahk
│                               desktop.ini
│                               hotkeys.ahk
│
├───Documents
│   └───PowerShell
│           Microsoft.PowerShell_profile.ps1
│
└───dot_config
    ├───chezmoi
    │       chezmoi.toml
    │
    └───powershell
        │   user_profile.ps1
        │
        └───themes
                1_shell.omp.json
                1_shell_omp.json
                amro.omp.json
                bubblesline.omp.json
                catppuccin.omp.json
                catppuccin_frappe.omp.json
                catppuccin_latte.omp.json
                catppuccin_macchiato.omp.json
                catppuccin_mocha.omp.json
                multiverse-neon.omp.json
                tokyonight_storm.omp.json
                velvet.omp.json
chezmoi managed
.config
.config/chezmoi
.config/chezmoi/chezmoi.toml
.config/powershell
.config/powershell/themes
.config/powershell/themes/1_shell.omp.json
.config/powershell/themes/1_shell_omp.json
.config/powershell/themes/amro.omp.json
.config/powershell/themes/bubblesline.omp.json
.config/powershell/themes/catppuccin.omp.json
.config/powershell/themes/catppuccin_frappe.omp.json
.config/powershell/themes/catppuccin_latte.omp.json
.config/powershell/themes/catppuccin_macchiato.omp.json
.config/powershell/themes/catppuccin_mocha.omp.json
.config/powershell/themes/multiverse-neon.omp.json
.config/powershell/themes/tokyonight_storm.omp.json
.config/powershell/themes/velvet.omp.json
.config/powershell/user_profile.ps1
AppData
AppData/Local
AppData/Local/Packages
AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe
AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState
AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/ctpayamir.png
AppData/Local/Packages/Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe/LocalState/settings.json
AppData/Local/nvim
AppData/Local/nvim/init.lua
AppData/Local/nvim/lua
AppData/Local/nvim/lua/core
AppData/Local/nvim/lua/core/autocommands.lua
AppData/Local/nvim/lua/core/bufferline.lua
AppData/Local/nvim/lua/core/cmp.lua
AppData/Local/nvim/lua/core/colorscheme.lua
AppData/Local/nvim/lua/core/comment.lua
AppData/Local/nvim/lua/core/gitsigns.lua
AppData/Local/nvim/lua/core/illuminate.lua
AppData/Local/nvim/lua/core/impatient.lua
AppData/Local/nvim/lua/core/indentline.lua
AppData/Local/nvim/lua/core/inlay-hint.lua
AppData/Local/nvim/lua/core/keymappings.lua
AppData/Local/nvim/lua/core/lualine.lua
AppData/Local/nvim/lua/core/mason.lua
AppData/Local/nvim/lua/core/neoscroll.lua
AppData/Local/nvim/lua/core/null-ls.lua
AppData/Local/nvim/lua/core/nvim-tree.lua
AppData/Local/nvim/lua/core/options.lua
AppData/Local/nvim/lua/core/plugins.lua
AppData/Local/nvim/lua/core/telescope.lua
AppData/Local/nvim/lua/core/toggleterm.lua
AppData/Local/nvim/lua/core/treesitter.lua
AppData/Local/nvim/lua/core/zen-mode.lua
AppData/Local/nvim/lua/split.lua
AppData/Roaming
AppData/Roaming/Dexpot
AppData/Roaming/Dexpot/profile
AppData/Roaming/Dexpot/profile/Main.dxp
AppData/Roaming/Microsoft
AppData/Roaming/Microsoft/Windows
AppData/Roaming/Microsoft/Windows/Start Menu
AppData/Roaming/Microsoft/Windows/Start Menu/Programs
AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup
AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/colemak_dh_matrix.ahk
AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/desktop.ini
AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Startup/hotkeys.ahk
AppData/Roaming/alacritty
AppData/Roaming/alacritty/alacritty.yml
AppData/Roaming/alacritty/themes
AppData/Roaming/alacritty/themes/catppuccin-frappe.yml
AppData/Roaming/alacritty/themes/catppuccin-latte.yml
AppData/Roaming/alacritty/themes/catppuccin-macchiato.yml
AppData/Roaming/alacritty/themes/catppuccin-mocha.yml
Documents
Documents/PowerShell
Documents/PowerShell/Microsoft.PowerShell_profile.ps1

@bradenhilton
Copy link
Collaborator

Appreciate your patience here. Nothing looks obviously wrong to me.

Just to confirm, you are aware that the file in question appears to be named run_onchange_tast.bat (tAst) and not run_onchange_test.bat (tEst) as you stated before. Not that it should have any effect on the error.

Speaking of the error, has it changed? You said you fixed the error about $env:USERPROFILE\.config\powershell\user_profile.ps1.

@vunhatchuong
Copy link
Author

Just to confirm, you are aware that the file in question appears to be named run_onchange_tast.bat (tAst) and not run_onchange_test.bat (tEst) as you stated before. Not that it should have any effect on the error.

Yeah, I create a new one to try Chezmoi apply.

Speaking of the error, has it changed? You said you fixed the error about $env:USERPROFILE.config\powershell\user_profile.ps1.

I fixed the error of wrong script name run_onchange-test.bat instead of run_onchang_test.bat. The current error is if I execute a powershell script with chezmoi apply it will output errors when running through terminal don't.

@bradenhilton
Copy link
Collaborator

bradenhilton commented Oct 19, 2022

Have you tried adding an interpreters entry to your chezmoi config for .ps1 scripts?

In my config I have

[interpreters.ps1]
command = "powershell"
args = ["-NoLogo", "-NoProfile", "-File"]

If you're using pwsh, I believe it defaults to -File, so you can probably try something like

[interpreters.ps1]
command = "pwsh"
args = ["-NoLogo", "-NoProfile"]

Obviously this would not use your PowerShell profile, you can omit "-NoProfile" to use it.

@vunhatchuong
Copy link
Author

Yep, the -File flag is the problem here.

[interpreters.ps1]
    command = "pwsh"
    args = ["-NoLogo"]

You don't need to use -NoProfile.

@twpayne
Copy link
Owner

twpayne commented Oct 20, 2022

Thank you both for debugging this.

Does this warrant an FAQ entry on using pwsh instead of powershell?

@bradenhilton
Copy link
Collaborator

@twpayne To be honest, I'm still not sure what the actual issue was, or why changing the interpreter seems to have fixed it.

Windows PowerShell (powershell.exe) is installed by default on basically every modern version of Windows. I'm not sure if it's even possible to uninstall it. PowerShell Core (pwsh.exe) must be user installed as far as I am aware. They can both co-exist on the same machine. As long as you're not using pwsh specific features, powershell will run things just fine.

I use Windows Terminal with the default shell set to pwsh, but my scripts run just fine for me even though I have the interpreter set to powershell.

@vunhatchuong
Copy link
Author

pwsh is really weird. Firstly, if you want to run run_ or any scripts you need to Set-ExecutionPolicy RemoteSigned.

It's useless to set that through pwsh, it will takes no effect at all. So If I want to do my one line installer, I would do everything in Windows Powershell first rather than through pwsh

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 28, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
support Support request
Projects
None yet
Development

No branches or pull requests

3 participants