nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 9092bcfab83aa1687c1be7fca08324869fa68f29
parent 893b1941133dc117e910ebf96c5481bf111ab7e5
Author: Toni Brown <tb148@proton.me>
Date:   Fri,  5 Sep 2025 16:44:00 +0800

use single quotes

Diffstat:
Mconfig.nu | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/config.nu b/config.nu @@ -1,6 +1,6 @@ -$env.config.buffer_editor = "hx" +$env.config.buffer_editor = 'hx' $env.config.show_banner = false $env.CARAPACE_BRIDGES = 'zsh,fish,bash,inshellisense' -$env.EDITOR = "hx" -$env.SHELL = "nu" -$env.UID = $"(id -u)" +$env.EDITOR = 'hx' +$env.SHELL = 'nu' +$env.UID = $'(id -u)'