Machine-specific config module
This commit is contained in:
parent
db35dcfd90
commit
ae68be083f
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
machine_specific.lua
|
4
machine_specific.example.lua
Normal file
4
machine_specific.example.lua
Normal file
@ -0,0 +1,4 @@
|
||||
-- Machine-specific configurations for different systems
|
||||
local machine_specific = {}
|
||||
machine_specific.enable_tab_bar = false
|
||||
return machine_specific
|
@ -1,5 +1,6 @@
|
||||
local wezterm = require 'wezterm'
|
||||
local config = {}
|
||||
local machine_specific = require("machine_specific")
|
||||
|
||||
config.font = wezterm.font 'IosevkaTermSlab Nerd Font Mono'
|
||||
config.font_size = 11.0
|
||||
@ -20,7 +21,8 @@ config.window_frame = {
|
||||
}
|
||||
|
||||
config.use_fancy_tab_bar = false
|
||||
config.enable_tab_bar = false
|
||||
config.enable_tab_bar = machine_specific.enable_tab_bar
|
||||
|
||||
config.colors = {
|
||||
background = '#101010',
|
||||
foreground = '#BBBBBB',
|
||||
|
Loading…
Reference in New Issue
Block a user