Kidimos's Studio.

Wezterm终端配置

Word count: 265Reading time: 1 min
2025/06/16
loading

终端美化

Wezterm Terminal介绍

WezTerm is a powerful cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust

Features

配置进度

  • 由于还有其他项目需要推进,所以先弄个普通能看的终端试试。
  • 之后如果有时间可能会搞个比较有意思的终端美化。

配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
-- wezterm.lua
local wezterm = require("wezterm")

local config = wezterm.config_builder()

config = {
automatically_reload_config = true,
enable_tab_bar = false,
window_close_confirmation = "NeverPrompt",
window_decorations = "RESIZE",
default_cursor_style = "BlinkingBar",
color_scheme = "Nord (Gogh)",
font = wezterm.font("JetBrains Mono", { weight = "Bold" }),
-- font = wezterm.font("Cascadia Mono", { weight = "Bold" }),
font_size = 12.5,
background = {
{
source = {
File = "/Volumes/KidimosShield/Photos/Surtur/鸦居.jpg",
},
hsb = {
hue = 1.0,
saturation = 1.02,
brightness = 0.25,
},
width = "100%",
height = "100%",
},
{
source = {
Color = "#282c35",
},
width = "100%",
height = "100%",
opacity = 0.55,
},
},
window_padding = {
left = 3,
right = 3,
top = 0,
bottom = 0,
},
}

return config
CATALOG
  1. 1. 终端美化
    1. 1.1. Wezterm Terminal介绍
      1. 1.1.1. Features
    2. 1.2. 配置进度
    3. 1.3. 配置文件