mirror of
https://github.com/acedanger/dotfiles.git
synced 2025-12-05 22:30:13 -08:00
15 lines
429 B
Lua
15 lines
429 B
Lua
local Config = {}
|
|
|
|
Config.enable_tab_bar = true
|
|
Config.hide_tab_bar_if_only_one_tab = false
|
|
Config.show_new_tab_button_in_tab_bar = true
|
|
Config.show_tab_index_in_tab_bar = false
|
|
Config.show_tabs_in_tab_bar = true
|
|
Config.switch_to_last_active_tab_when_closing_tab = false
|
|
Config.tab_and_split_indices_are_zero_based = false
|
|
Config.tab_bar_at_bottom = true
|
|
Config.tab_max_width = 25
|
|
Config.use_fancy_tab_bar = false
|
|
|
|
return Config
|