aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-dotfiles/src/shell.rs
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-03-04 15:49:28 +0000
committerGitHub <noreply@github.com>2024-03-04 15:49:28 +0000
commita5e1d252877af0d7c453a209156205ce6ce9739d (patch)
treed729800cbb9acce75b77b11570dae1e4f6ae761a /atuin-dotfiles/src/shell.rs
parentfix(tz): attempt to fix timezone reading (#1810) (diff)
downloadatuin-a5e1d252877af0d7c453a209156205ce6ce9739d.zip
refactor: rename atuin-config to atuin-dotfiles (#1817)
Diffstat (limited to 'atuin-dotfiles/src/shell.rs')
-rw-r--r--atuin-dotfiles/src/shell.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/atuin-dotfiles/src/shell.rs b/atuin-dotfiles/src/shell.rs
new file mode 100644
index 00000000..a69a2d6b
--- /dev/null
+++ b/atuin-dotfiles/src/shell.rs
@@ -0,0 +1,10 @@
+pub mod bash;
+pub mod fish;
+pub mod xonsh;
+pub mod zsh;
+
+#[derive(Debug, Clone, PartialEq, Eq)]
+pub struct Alias {
+ pub name: String,
+ pub value: String,
+}