master
Raw Download raw file
 1local wezterm = require 'wezterm';
 2return {
 3
 4  -- tab bar
 5  enable_tab_bar = false,
 6  hide_tab_bar_if_only_one_tab = false,
 7
 8  -- mouse
 9  disable_default_mouse_bindings = true,
10 
11  -- font & color
12  font = wezterm.font("CozetteVector"),
13  font_size = 12.0,
14  colors = {
15    foreground     = "#ffffff", -- white
16    background     = "#000009", -- Default Background
17    cursor_bg      = "#ee33ee", -- magenta
18    cursor_border  = "#bd1e8d", -- bright white
19    cursor_fg      = "#ffffff", -- bright white
20    selection_fg   = "#000000", -- black
21    selection_bg   = "#f8ca12", -- yellow
22    ansi = {
23      "#000000", -- black
24      "#eb008a", -- red
25      "#37b349", -- green
26      "#f8ca12", -- yellow
27      "#0e5a94", -- blue
28      "#b31e8d", -- magenta
29      "#00aabb", -- cyan
30      "#e0e0e0", -- white
31    },
32    bright = {
33      "#505050", -- bright black
34      "#eb008a", -- red
35      "#37b349", -- green
36      "#f8ca12", -- yellow
37      "#0e5a94", -- blue
38      "#b31e8d", -- magenta
39      "#00aabb", -- cyan
40      "#ffffff", -- bright white
41    },
42  }
43}