-- https://wezfurlong.org/wezterm/ -- -- ln ~/.config/nvim/wezterm.lua ~/.config/wezterm/ -- mkdir -p ~/.config/wezterm/colors/ -- ln ~/.config/nvim/wezterm_tokyonight_storm.toml ~/.config/wezterm/colors/ -- -- on X11, add to ~/.Xresources -- -- Xcursor.theme:DMZ-Black -- -- or Adwaita or whatever is the theme you use. -- -- Reload with: xrdb -merge ~/.Xresources -- local wezterm = require 'wezterm'; return { font = wezterm.font("JetBrains Mono Medium"), font_size = 10.0, custom_block_glyphs = false, warn_about_missing_glyphs = false, color_scheme = "gruvbox_material_dark_hard", color_schemes = { ["gruvbox_material_dark_hard"] = { foreground = "#D4BE98", background = "#1D2021", cursor_bg = "#D4BE98", cursor_border = "#D4BE98", cursor_fg = "#1D2021", selection_bg = "#D4BE98" , selection_fg = "#3C3836", ansi = {"#1d2021","#ea6962","#a9b665","#d8a657", "#7daea3","#d3869b", "#89b482","#d4be98"}, brights = {"#eddeb5","#ea6962","#a9b665","#d8a657", "#7daea3","#d3869b", "#89b482","#d4be98"}, }, }, hide_tab_bar_if_only_one_tab = true, window_padding = { left = "1cell", right = "1cell", top = "0.5cell", bottom = 0, } }