1
0
Fork 0

Compare commits

...

4 commits

Author SHA1 Message Date
70761a528c wezterm: back to Cascadia Mono 2024-09-05 18:33:30 +03:00
f94d1d4187 shells: disable icons in eza 2024-09-05 18:33:30 +03:00
7a99575d9a alacritty: fonts 2024-09-05 18:33:30 +03:00
358502ea3a bash, zsh: escape fixterm escape 2024-09-05 18:33:30 +03:00
6 changed files with 10 additions and 14 deletions

View file

@ -18,7 +18,7 @@ PS1='\[\e[0m\][ \u@\h \[\e[34m\]\w\[\e[0m\] ]\n\$ '
unalias ls ld ll 2>/dev/null
beep() { printf "\007"; }
fixterm() { printf "c"; }
fixterm() { printf "\u001bc"; }
diff() { command diff --color "$@"; }
tailf() { command less +F "$@"; }

View file

@ -1,3 +1,3 @@
function ls
command eza --icons --group-directories-first $argv
command eza --group-directories-first $argv
end

View file

@ -35,7 +35,7 @@ fsf() {
}
beep() { printf $'\007' }
fixterm() { printf $'c' }
fixterm() { printf $'\u001bc' }
diff() { command diff --color $@ }
tailf() { command less +F $@ }
@ -76,7 +76,7 @@ else
fi
if testbin eza; then
ls() { command eza --icons --group-directories-first $@ }
ls() { command eza --group-directories-first $@ }
ll() { ls -alg $@ }
ld() { ls -dlg $@ }
else

View file

@ -34,10 +34,10 @@ shape = "Block"
[font]
builtin_box_drawing = true
size = 16
size = 13
[font.normal]
family = "FantasqueSansM Nerd Font"
family = "IBM Plex Mono"
[[keyboard.bindings]]
action = "Paste"

View file

@ -13,12 +13,8 @@ local cursor_bg = '#cb4b16'
-- fonts
local fonts = wt.config_builder()
fonts.font = wt.font('Cascadia Mono PL')
fonts.harfbuzz_features = {'ss01', 'ss19', 'ss20'}
fonts.font_size = fn.set_by_os{
Darwin = 14,
others = 11
}
fonts.font = wt.font('IBM Plex Mono')
fonts.harfbuzz_features = {'ss03'}
-- theme
local theme = wt.config_builder()

View file

@ -20,8 +20,8 @@ cfg.check_for_updates = false
-- fonts & text
cfg.cursor_blink_rate = 0
cfg.bold_brightens_ansi_colors = false
cfg.font = wt.font('IBM Plex Mono')
cfg.harfbuzz_features = {'ss03'}
cfg.font = wt.font('Cascadia Mono PL')
cfg.harfbuzz_features = {'ss01', 'ss19', 'ss20'}
cfg.font_size = fn.set_by_os{
Darwin = 14,
others = 11