[wezterm] added wezterm config
This commit is contained in:
parent
293306443b
commit
24b93ba30e
1 changed files with 27 additions and 0 deletions
27
.config/wezterm/wezterm.lua
Normal file
27
.config/wezterm/wezterm.lua
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
local wezterm = require 'wezterm'
|
||||||
|
|
||||||
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
|
--Font config
|
||||||
|
config.font_size = 16
|
||||||
|
|
||||||
|
--Color scheme
|
||||||
|
config.color_scheme = 'Gruvbox dark, hard (base16)'
|
||||||
|
|
||||||
|
-- Remove tab bar
|
||||||
|
config.enable_tab_bar = false
|
||||||
|
|
||||||
|
-- Make it borderless
|
||||||
|
config.window_decorations = 'RESIZE'
|
||||||
|
|
||||||
|
-- Remove anoying things
|
||||||
|
config.window_close_confirmation = 'NeverPrompt'
|
||||||
|
config.audible_bell = "Disabled"
|
||||||
|
|
||||||
|
config.set_environment_variables = {
|
||||||
|
TERM = 'xterm-256color'
|
||||||
|
}
|
||||||
|
|
||||||
|
config.bold_brightens_ansi_colors = "No"
|
||||||
|
|
||||||
|
return config
|
Loading…
Reference in a new issue