Stuff
This commit is contained in:
parent
4a641fd5b6
commit
e3eba24f7e
2 changed files with 5 additions and 5 deletions
|
@ -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!
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue