2023-03-31 20:48:53 +02:00
|
|
|
# Nushell Environment Config File
|
|
|
|
|
|
|
|
# Directories to search for scripts when calling source or use
|
|
|
|
#
|
|
|
|
# By default, <nushell-config-dir>/scripts is added
|
2023-08-19 19:38:39 +02:00
|
|
|
$env.NU_LIB_DIRS = [
|
2023-04-13 08:38:40 +02:00
|
|
|
($env.HOME | path join '.config' 'nushell' 'scripts')
|
2023-03-31 20:48:53 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
# Directories to search for plugin binaries when calling register
|
|
|
|
#
|
|
|
|
# By default, <nushell-config-dir>/plugins is added
|
2023-08-19 19:38:39 +02:00
|
|
|
$env.NU_PLUGIN_DIRS = [
|
2023-04-13 08:38:40 +02:00
|
|
|
($env.HOME | path join '.config' 'nushell' 'plugins')
|
2023-03-31 20:48:53 +02:00
|
|
|
]
|
|
|
|
|
2023-04-07 11:20:18 +02:00
|
|
|
|