From b3965fea8b2de7b71e86a295b67e4a6a94dee679 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Sun, 18 May 2025 12:09:35 +0300 Subject: [PATCH] formatting [no ci] --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 21047e7a..273bb582 100644 --- a/README.md +++ b/README.md @@ -260,12 +260,12 @@ See [Advanced configuration](#advanced-configuration) for details and more confi Shell integration (completions and subcommands changing the shell's state) isn't currently supported. - ~~~ nu - $env.PYENV_ROOT = "~/.pyenv" | path expand - if (( $"($env.PYENV_ROOT)/bin" | path type ) == "dir") { - $env.PATH = $env.PATH | prepend $"($env.PYENV_ROOT)/bin" } - $env.PATH = $env.PATH | prepend $"(pyenv root)/shims" - ~~~ + ```nu + $env.PYENV_ROOT = "~/.pyenv" | path expand + if (( $"($env.PYENV_ROOT)/bin" | path type ) == "dir") { + $env.PATH = $env.PATH | prepend $"($env.PYENV_ROOT)/bin" } + $env.PATH = $env.PATH | prepend $"(pyenv root)/shims" + ```