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 endif
if has("persistent_undo") if has("persistent_undo")
if !isdirectory("~/.undodir") if !isdirectory("$HOME" . "/.undodir")
call mkdir("~/.undodir", "p", 0770) call mkdir("$HOME" . "/.undodir", "p", 0770)
endif endif
set undodir=~/.undodir set undodir="$HOME" . "/.undodir//"
set undofile set undofile
augroup undodir augroup undodir
autocmd! autocmd!

View file

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