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 wezterm = require 'wezterm'
|
||||||
local config = {}
|
local config = {}
|
||||||
|
local machine_specific = require("machine_specific")
|
||||||
|
|
||||||
config.font = wezterm.font 'IosevkaTermSlab Nerd Font Mono'
|
config.font = wezterm.font 'IosevkaTermSlab Nerd Font Mono'
|
||||||
config.font_size = 11.0
|
config.font_size = 11.0
|
||||||
@ -20,7 +21,8 @@ config.window_frame = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
config.use_fancy_tab_bar = false
|
config.use_fancy_tab_bar = false
|
||||||
config.enable_tab_bar = false
|
config.enable_tab_bar = machine_specific.enable_tab_bar
|
||||||
|
|
||||||
config.colors = {
|
config.colors = {
|
||||||
background = '#101010',
|
background = '#101010',
|
||||||
foreground = '#BBBBBB',
|
foreground = '#BBBBBB',
|
||||||
|
Loading…
Reference in New Issue
Block a user