17 lines
440 B
Text
17 lines
440 B
Text
# Nushell Environment Config File
|
|
|
|
# Directories to search for scripts when calling source or use
|
|
#
|
|
# By default, <nushell-config-dir>/scripts is added
|
|
$env.NU_LIB_DIRS = [
|
|
($env.HOME | path join '.config' 'nushell' 'scripts')
|
|
]
|
|
|
|
# Directories to search for plugin binaries when calling register
|
|
#
|
|
# By default, <nushell-config-dir>/plugins is added
|
|
$env.NU_PLUGIN_DIRS = [
|
|
($env.HOME | path join '.config' 'nushell' 'plugins')
|
|
]
|
|
|
|
|