summaryrefslogtreecommitdiffstats
path: root/src/configs/git_branch.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/configs/git_branch.rs')
-rw-r--r--src/configs/git_branch.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/configs/git_branch.rs b/src/configs/git_branch.rs
index d9c40c9ad..c20321592 100644
--- a/src/configs/git_branch.rs
+++ b/src/configs/git_branch.rs
@@ -12,6 +12,7 @@ pub struct GitBranchConfig<'a> {
pub truncation_symbol: &'a str,
pub only_attached: bool,
pub always_show_remote: bool,
+ pub ignore_branches: Vec<&'a str>,
pub disabled: bool,
}
@@ -25,6 +26,7 @@ impl<'a> Default for GitBranchConfig<'a> {
truncation_symbol: "…",
only_attached: false,
always_show_remote: false,
+ ignore_branches: vec![],
disabled: false,
}
}