Fix jobs, and some rendering issues
This commit is contained in:
parent
eb3dca73ce
commit
dce003a6ff
3 changed files with 8 additions and 5 deletions
|
@ -20,7 +20,7 @@ set ttyfast
|
||||||
set wildmenu
|
set wildmenu
|
||||||
set title
|
set title
|
||||||
set list
|
set list
|
||||||
set listchars=tab:→\ ,eol:¬,trail:•,extends:❯,precedes:❮,space:⨪
|
set listchars=tab:→\ ,eol:¬,trail:•,extends:❯,precedes:❮,space:‣
|
||||||
set showbreak=↪
|
set showbreak=↪
|
||||||
set timeoutlen=500
|
set timeoutlen=500
|
||||||
set ignorecase
|
set ignorecase
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
local wezterm = require 'wezterm';
|
local wezterm = require 'wezterm';
|
||||||
|
|
||||||
function font_with_fallback(name, params)
|
function font_with_fallback(name, params)
|
||||||
local names = {name, "Iosevka 3.3.0 Custom", "Noto Color Emoji", "JetBrains Mono", "Monaco"}
|
local names = {name, "Noto Color Emoji", "JetBrains Mono", "Monaco"}
|
||||||
return wezterm.font_with_fallback(names,params)
|
return wezterm.font_with_fallback(names,params)
|
||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
-- font stuff
|
-- font stuff
|
||||||
-- font = font_with_fallback("Iosevka Custom"),
|
-- font = font_with_fallback("Iosevka Custom"),
|
||||||
font = font_with_fallback("Iosevka Custom"),
|
font = font_with_fallback("Iosevka Custom Light"),
|
||||||
font_rules = {
|
font_rules = {
|
||||||
{
|
{
|
||||||
italic = true,
|
italic = true,
|
||||||
|
@ -18,7 +18,7 @@ return {
|
||||||
font_size = 14.0,
|
font_size = 14.0,
|
||||||
font_antialias = "Subpixel",
|
font_antialias = "Subpixel",
|
||||||
font_hinting = "Full",
|
font_hinting = "Full",
|
||||||
font_shaper = "Allsorts",
|
font_shaper = "Harfbuzz",
|
||||||
|
|
||||||
-- TERM name
|
-- TERM name
|
||||||
term = "xterm-256color",
|
term = "xterm-256color",
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
[character]
|
[character]
|
||||||
success_symbol ="[◯](bold green)"
|
success_symbol ="[◯](bold green)"
|
||||||
error_symbol = "[✗](bold red)"
|
error_symbol = "[✗](bold red)"
|
||||||
vicmd_symbol = "⚒️"
|
vicmd_symbol = ""
|
||||||
|
|
||||||
|
[jobs]
|
||||||
|
symbol = "+"
|
||||||
|
|
Loading…
Add table
Reference in a new issue