add export config script

This commit is contained in:
alice pellerin
2026-04-25 18:18:08 -05:00
parent 7741bb112e
commit adfb780521
6 changed files with 102 additions and 27 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ impl Mode {
match self {
Self::Normal => " NORMAL ",
Self::Select => " SELECT ",
Self::Insert => " INSERT ",
// Self::Insert => " INSERT ",
}
}
@@ -48,7 +48,7 @@ impl Mode {
match self {
Self::Normal => Color::Blue,
Self::Select => Color::Yellow,
Self::Insert => Color::Green,
// Self::Insert => Color::Green,
}
}
}