aboutsummaryrefslogtreecommitdiff
path: root/src/nushell/020_environment.nu
diff options
context:
space:
mode:
authorAutumn <git@autumnfo.rest>2026-05-08 08:18:59 +0100
committerAutumn <git@autumnfo.rest>2026-05-08 08:18:59 +0100
commitc0d3ad9427409d74238e450db9fe7f7e6e08aa99 (patch)
treeba983e3619c3fd06c6a9871cd2a2b383f5b18330 /src/nushell/020_environment.nu
parentd25b33573e37aa64e6c6e840bfb976512de69e2d (diff)
[conf/nushell] added 020 config
Diffstat (limited to 'src/nushell/020_environment.nu')
-rw-r--r--src/nushell/020_environment.nu24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/nushell/020_environment.nu b/src/nushell/020_environment.nu
new file mode 100644
index 0000000..6b23615
--- /dev/null
+++ b/src/nushell/020_environment.nu
@@ -0,0 +1,24 @@
+#
+# ~~~ nushell env config
+#
+
+export-env {
+
+ #
+ # ~~~ system
+
+ # setup editor
+ $env.EDITOR = "nvim"
+
+ # setup ssh agent
+ $env.SSH_AUTH_SOCK = $"($env.XDG_RUNTIME_DIR)/ssh-agent.socket"
+
+ # setup gpg agent
+ $env.GPG_TTY = ^tty
+
+ #
+ # ~~~ theming
+
+ # setup qt
+ $env.QT_QPA_PLATFORMTHEME = "qt6ct"
+}