Skip to main content

vtcode_core/terminal_setup/terminals/
mod.rs

1//! Terminal-specific configuration generators.
2//!
3//! Each terminal has its own module with configuration generation logic.
4
5pub mod alacritty;
6pub mod ghostty;
7pub mod hyper;
8pub mod iterm2;
9pub mod kitty;
10pub mod tabby;
11pub mod vscode;
12pub mod warp;
13pub mod windows_terminal;
14pub mod zed;
15
16#[cfg(test)]
17mod tests {
18    #[test]
19    fn test_module_structure() {
20        // Placeholder test
21    }
22}