wezterm/.wezterm.lua 1002 B raw
1
local wezterm = require 'wezterm'
2
3
local config = {}
4
5
if wezterm.config_builder then
6
  config = wezterm.config_builder()
7
end
8
9
config.color_scheme = 'nord'
10
11
--[[ config.color_schemes = {
12
  ["Darkmatter"] = {
13
    foreground = "#ffffff",
14
    background = "#121113",
15
    cursor_fg = "#121113",
16
    cursor_bg = "#ffffff",
17
    cursor_border = "#ffffff",
18
    selection_fg = "#000000",
19
    selection_bg = "#222222",
20
    ansi = {
21
      "#121113", "#5f8787", "#fbcb97", "#e78a53",
22
      "#888888", "#999999", "#aaaaaa", "#c1c1c1"
23
    },
24
    brights = {
25
      "#333333", "#5f8787", "#fbcb97", "#e78a53",
26
      "#888888", "#999999", "#aaaaaa", "#c1c1c1"
27
    }
28
  }
29
} ]]
30
31
config.font = wezterm.font('BerkeleyMono Nerd Font')
32
config.font_size = 14
33
34
35
config.enable_tab_bar = false
36
config.window_decorations = "RESIZE"
37
config.window_padding = {
38
  left = 10,
39
  right = 10,
40
  top = 4,
41
  bottom = 4
42
}
43
44
config.initial_cols = 85
45
config.initial_rows = 30
46
47
-- config.default_prog = { '/opt/homebrew/bin/nu' }
48
49
50
51
return config