diff options
| author | Autumn <git@autumnfo.rest> | 2026-05-08 10:14:33 +0100 |
|---|---|---|
| committer | Autumn <git@autumnfo.rest> | 2026-05-08 10:14:33 +0100 |
| commit | b0efa6864c4548a97fd6da3f238e81e3771b65db (patch) | |
| tree | 908af3185f5885cb564979d8fcbd4b5c9c88725a /src/nushell | |
| parent | 8d1d0d42035a6913eaaea008fe31f0b5fac0394a (diff) | |
[conf/nushell] added 030 config
Diffstat (limited to 'src/nushell')
| -rw-r--r-- | src/nushell/030_config.nu | 13 | ||||
| -rw-r--r-- | src/nushell/030_environment.nu | 12 |
2 files changed, 25 insertions, 0 deletions
diff --git a/src/nushell/030_config.nu b/src/nushell/030_config.nu new file mode 100644 index 0000000..10fddd6 --- /dev/null +++ b/src/nushell/030_config.nu @@ -0,0 +1,13 @@ +# +# ~~~ nushell config +# + +# +# ~~~ environment +use environment.nu + +# +# ~~~ theming + +# hide banner +$env.config.show_banner = false diff --git a/src/nushell/030_environment.nu b/src/nushell/030_environment.nu new file mode 100644 index 0000000..ea6f4d5 --- /dev/null +++ b/src/nushell/030_environment.nu @@ -0,0 +1,12 @@ +# +# ~~~ nushell env config +# + +export-env { + + # + # ~~~ system + + # setup editor + $env.EDITOR = "nvim" +} |
