This commit is contained in:
Anthony Cicchetti 2020-10-19 09:25:09 -04:00
parent 4a641fd5b6
commit e3eba24f7e
2 changed files with 5 additions and 5 deletions

View file

@ -43,10 +43,10 @@ if has('nvim')
endif
if has("persistent_undo")
if !isdirectory("~/.undodir")
call mkdir("~/.undodir", "p", 0770)
if !isdirectory("$HOME" . "/.undodir")
call mkdir("$HOME" . "/.undodir", "p", 0770)
endif
set undodir=~/.undodir
set undodir="$HOME" . "/.undodir//"
set undofile
augroup undodir
autocmd!

View file

@ -12,13 +12,13 @@ return {
font_rules = {
{
italic = true,
font = font_with_fallback("Dank Mono"),
font = font_with_fallback("Dank Mono", {italic=true}),
},
},
font_size = 14.0,
font_antialias = "Subpixel",
font_hinting = "Full",
font_shaping = "Harfbuzz",
font_shaper = "Allsorts",
-- TERM name
term = "xterm-256color",