mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-06-03 07:26:48 +00:00
init
This commit is contained in:
11
wezterm/colors/tokyonight.toml
Normal file
11
wezterm/colors/tokyonight.toml
Normal file
@@ -0,0 +1,11 @@
|
||||
[colors]
|
||||
foreground = "#c0caf5"
|
||||
background = "#24283b"
|
||||
cursor_bg = "#c0caf5"
|
||||
cursor_border = "#c0caf5"
|
||||
cursor_fg = "#24283b"
|
||||
selection_bg = "#364A82"
|
||||
selection_fg = "#c0caf5"
|
||||
|
||||
ansi = ["#1D202F", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#a9b1d6"]
|
||||
brights = ["#414868", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#c0caf5"]
|
||||
40
wezterm/wezterm.lua
Normal file
40
wezterm/wezterm.lua
Normal file
@@ -0,0 +1,40 @@
|
||||
local wezterm = require('wezterm')
|
||||
return {
|
||||
font_size = 14,
|
||||
font = wezterm.font_with_fallback({
|
||||
'JetBrains Mono',
|
||||
'JetBrainsMono Nerd Font Mono',
|
||||
}),
|
||||
colors = {
|
||||
tab_bar = {
|
||||
active_tab = {
|
||||
bg_color = '#24283b',
|
||||
fg_color = '#c0caf5',
|
||||
},
|
||||
},
|
||||
},
|
||||
color_scheme = 'tokyonight',
|
||||
window_frame = {
|
||||
font_size = 14.0,
|
||||
},
|
||||
window_padding = {
|
||||
left = 5,
|
||||
right = 5,
|
||||
top = 0,
|
||||
bottom = 0,
|
||||
},
|
||||
foreground_text_hsb = {
|
||||
hue = 1.0,
|
||||
saturation = 1.0,
|
||||
brightness = 1.2,
|
||||
},
|
||||
use_ime = true, -- fix Chinese
|
||||
skip_close_confirmation_for_processes_named = {
|
||||
'fzf',
|
||||
'zsh',
|
||||
'fzf',
|
||||
},
|
||||
keys = {
|
||||
{ key = 'w', mods = 'CMD', action = wezterm.action({ CloseCurrentTab = { confirm = false } }) },
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user