1
0
Fork 0

Compare commits

...

4 commits

Author SHA1 Message Date
Andrey Tryapichnikov
e1139a7508 wezterm: back to Cascadia Mono 2024-09-05 12:30:27 +03:00
Andrey Tryapichnikov
725ed8a096 shells: disable icons in eza 2024-08-29 23:06:39 +03:00
Andrey Tryapichnikov
957538f1f1 alacritty: fonts 2024-08-29 23:05:52 +03:00
f199fc7a86 bash, zsh: escape fixterm escape 2024-08-10 02:20:16 +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 unalias ls ld ll 2>/dev/null
beep() { printf "\007"; } beep() { printf "\007"; }
fixterm() { printf "c"; } fixterm() { printf "\u001bc"; }
diff() { command diff --color "$@"; } diff() { command diff --color "$@"; }
tailf() { command less +F "$@"; } tailf() { command less +F "$@"; }

View file

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

View file

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

View file

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

View file

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

View file

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