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 title
|
||||
set list
|
||||
set listchars=tab:→\ ,eol:¬,trail:•,extends:❯,precedes:❮,space:⨪
|
||||
set listchars=tab:→\ ,eol:¬,trail:•,extends:❯,precedes:❮,space:‣
|
||||
set showbreak=↪
|
||||
set timeoutlen=500
|
||||
set ignorecase
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
local wezterm = require 'wezterm';
|
||||
|
||||
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)
|
||||
end
|
||||
|
||||
return {
|
||||
-- font stuff
|
||||
-- font = font_with_fallback("Iosevka Custom"),
|
||||
font = font_with_fallback("Iosevka Custom"),
|
||||
font = font_with_fallback("Iosevka Custom Light"),
|
||||
font_rules = {
|
||||
{
|
||||
italic = true,
|
||||
|
@ -18,7 +18,7 @@ return {
|
|||
font_size = 14.0,
|
||||
font_antialias = "Subpixel",
|
||||
font_hinting = "Full",
|
||||
font_shaper = "Allsorts",
|
||||
font_shaper = "Harfbuzz",
|
||||
|
||||
-- TERM name
|
||||
term = "xterm-256color",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
[character]
|
||||
success_symbol ="[◯](bold green)"
|
||||
error_symbol = "[✗](bold red)"
|
||||
vicmd_symbol = "⚒️"
|
||||
vicmd_symbol = ""
|
||||
|
||||
[jobs]
|
||||
symbol = "+"
|
||||
|
|
Loading…
Add table
Reference in a new issue