2022-03-05 20:59:19 +01:00
|
|
|
pub mod containers;
|
2019-03-12 08:54:19 +02:00
|
|
|
pub mod emacs;
|
2018-12-15 21:52:21 +02:00
|
|
|
pub mod generic;
|
|
|
|
|
pub mod git;
|
2022-11-19 19:04:33 -05:00
|
|
|
pub mod go;
|
2022-02-06 18:48:06 -03:00
|
|
|
pub mod kakoune;
|
2018-12-15 21:52:21 +02:00
|
|
|
pub mod node;
|
|
|
|
|
pub mod os;
|
2019-08-14 21:36:57 +03:00
|
|
|
pub mod powershell;
|
2020-08-22 14:46:17 +03:00
|
|
|
pub mod remote;
|
2018-12-15 21:52:21 +02:00
|
|
|
#[cfg(unix)]
|
|
|
|
|
pub mod tmux;
|
2022-01-24 11:10:21 +01:00
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
pub mod toolbx;
|
2018-12-15 21:52:21 +02:00
|
|
|
pub mod vim;
|
2019-10-01 20:50:44 +03:00
|
|
|
#[cfg(unix)]
|
|
|
|
|
pub mod zsh;
|
2018-12-15 21:52:21 +02:00
|
|
|
|
|
|
|
|
pub use self::os::*;
|