1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-27 18:17:44 +00:00

nushell: fix config and environment

This commit is contained in:
RGBCube 2025-06-09 02:26:18 +03:00
parent 816ec26d73
commit 1c2100eb81
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
2 changed files with 6 additions and 5 deletions

View file

@ -422,8 +422,3 @@ $env.config.keybindings = [
event: { send: enter } event: { send: enter }
} }
] ]
$env.LS_COLORS = (open ~/.config/nushell/ls_colors.txt)
source ~/.config/nushell/zoxide.nu
source ~/.config/nushell/starship.nu

View file

@ -7,6 +7,12 @@ $env.ENV_CONVERSIONS.PATH = {
} }
} }
$env.LS_COLORS = (open ~/.config/nushell/ls_colors.txt)
source ~/.config/nushell/zoxide.nu
source ~/.config/nushell/starship.nu
def copy []: string -> nothing { def copy []: string -> nothing {
print --no-newline $"(ansi osc)52;c;($in | encode base64)(ansi st)" print --no-newline $"(ansi osc)52;c;($in | encode base64)(ansi st)"
} }