Compare commits
4 commits
e1139a7508
...
70761a528c
Author | SHA1 | Date | |
---|---|---|---|
70761a528c | |||
f94d1d4187 | |||
7a99575d9a | |||
358502ea3a |
6 changed files with 10 additions and 14 deletions
|
@ -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 "$@"; }
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
function ls
|
||||
command eza --icons --group-directories-first $argv
|
||||
command eza --group-directories-first $argv
|
||||
end
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue