commit b199074aa73f306a21069ebc46c759945614f076 Author: Oliver Hartmann Date: Thu Apr 7 23:50:07 2022 +0200 first version of config diff --git a/wezterm.lua b/wezterm.lua new file mode 100644 index 0000000..1888e67 --- /dev/null +++ b/wezterm.lua @@ -0,0 +1,28 @@ +local wezterm = require 'wezterm'; +return { + font = wezterm.font("JetBrainsMono Nerd Font Mono"), + -- font = wezterm.font("Roboto Mono"), + custom_block_glyphs = false, + -- font = wezterm.font_with_fallback({ + -- { + -- family="JetBrains Mono", + -- weight="Medium", + -- harfbuzz_features={"calt=0", "clig=0", "liga=0"} + -- }, + -- {family="Terminus", weight="Bold"}, + -- "Noto Color Emoji" + -- }), + harfbuzz_features = {"calt=0", "clig=0", "liga=0"}, + font_size = 10, + -- font_antialias = "None", + color_scheme = "Gruvbox Dark", + hide_tab_bar_if_only_one_tab = true, + enable_tab_bar = false, + default_prog = {"/usr/bin/nvim"}, + window_padding = { + left = 0, + right = 0, + top = 0, + bottom = 0, + }, +}