nvim: tweaks

This commit is contained in:
thomasabishop 2024-02-13 14:46:22 +00:00
parent 736f092190
commit b00cd3eca0
3 changed files with 3 additions and 7 deletions

View file

@ -12,7 +12,7 @@ local function update_hl(group, tbl)
end end
-- update_hl("Function", { bold = true }) -- update_hl("Function", { bold = true })
update_hl("Comment", { italic = true }) -- update_hl("Comment", { italic = true })
update_hl("markdownH1", { bold = true }) update_hl("markdownH1", { bold = true })
update_hl("markdownH2", { bold = true }) update_hl("markdownH2", { bold = true })

View file

@ -1,6 +1,3 @@
-- vim.g.onedark_terminal_italics = 1
-- vim.g.gruvbox_material_enable_italic = 1
local opt = vim.opt local opt = vim.opt
opt.number = true opt.number = true
opt.showmatch = true opt.showmatch = true
@ -27,5 +24,3 @@ opt.termguicolors = true
opt.wrap = false opt.wrap = false
opt.formatoptions = "cro" opt.formatoptions = "cro"
opt.backspace = "indent,eol,start" opt.backspace = "indent,eol,start"
-- vim.g.gruvbox_material_enable_bold = 1

View file

@ -5,8 +5,9 @@ if not gitblame then
end end
gitblame.setup({ gitblame.setup({
highlight_group = "Whitespace",
message_template = " <author> • <date> • <summary> • <sha>", message_template = " <author> • <date> • <summary> • <sha>",
date_format = "%r (%x)", date_format = "%r (%x)",
message_when_not_committed = "", message_when_not_committed = "",
gitblame_use_blame_commit_file_urls = true, use_blame_commit_file_urls = true,
}) })