wezterm config
This commit is contained in:
parent
c364ffe701
commit
f7e9b55da3
17
config/wezterm/ashen.lua
Normal file
17
config/wezterm/ashen.lua
Normal file
|
@ -0,0 +1,17 @@
|
|||
return {
|
||||
foreground = "#f5f5f5",
|
||||
background = "#121212",
|
||||
|
||||
cursor_bg = "#f5f5f5",
|
||||
cursor_fg = "#121212",
|
||||
cursor_border = "#f5f5f5",
|
||||
|
||||
selection_fg = "#f5f5f5",
|
||||
selection_bg = "#1d1d1d",
|
||||
|
||||
scrollbar_thumb = "#121212",
|
||||
split = "#121212",
|
||||
|
||||
ansi = { "#121212", "#B14242", "#D87C4A", "#E49A44", "#4A8B8B", "#a7a7a7", "#b4b4b4", "#d5d5d5" },
|
||||
brights = { "#949494", "#B14242", "#D87C4A", "#E49A44", "#4A8B8B", "#a7a7a7", "#b4b4b4", "#d5d5d5" },
|
||||
}
|
22
config/wezterm/wezterm.lua
Normal file
22
config/wezterm/wezterm.lua
Normal file
|
@ -0,0 +1,22 @@
|
|||
local wezterm = require 'wezterm'
|
||||
local config = {}
|
||||
|
||||
config.animation_fps = 60
|
||||
config.use_fancy_tab_bar = false
|
||||
config.tab_bar_at_bottom = true
|
||||
|
||||
config.font = wezterm.font("Comic Code Ligatures")
|
||||
config.font_size = 25
|
||||
config.freetype_load_target = "Light"
|
||||
config.default_cursor_style = "BlinkingBlock"
|
||||
|
||||
config.colors = require("ashen")
|
||||
config.window_padding = {
|
||||
left = 20,
|
||||
right = 20,
|
||||
top = 0,
|
||||
bottom = 0,
|
||||
}
|
||||
|
||||
|
||||
return config
|
Loading…
Reference in a new issue