first version of config

This commit is contained in:
Oliver Hartmann 2022-04-07 23:50:07 +02:00
commit b199074aa7

28
wezterm.lua Normal file
View File

@ -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,
},
}