diff --git a/nvim/lua/thomas/core/colourscheme.lua b/nvim/lua/thomas/core/colourscheme.lua index 2f4cda5..e2b3aaf 100644 --- a/nvim/lua/thomas/core/colourscheme.lua +++ b/nvim/lua/thomas/core/colourscheme.lua @@ -12,7 +12,7 @@ local function update_hl(group, tbl) end -- update_hl("Function", { bold = true }) -update_hl("Comment", { italic = true }) +-- update_hl("Comment", { italic = true }) update_hl("markdownH1", { bold = true }) update_hl("markdownH2", { bold = true }) diff --git a/nvim/lua/thomas/core/options.lua b/nvim/lua/thomas/core/options.lua index cec7d59..4021df4 100644 --- a/nvim/lua/thomas/core/options.lua +++ b/nvim/lua/thomas/core/options.lua @@ -1,6 +1,3 @@ --- vim.g.onedark_terminal_italics = 1 --- vim.g.gruvbox_material_enable_italic = 1 - local opt = vim.opt opt.number = true opt.showmatch = true @@ -27,5 +24,3 @@ opt.termguicolors = true opt.wrap = false opt.formatoptions = "cro" opt.backspace = "indent,eol,start" - --- vim.g.gruvbox_material_enable_bold = 1 diff --git a/nvim/lua/thomas/plugins/gitblame.lua b/nvim/lua/thomas/plugins/gitblame.lua index deb8a93..7c1d573 100644 --- a/nvim/lua/thomas/plugins/gitblame.lua +++ b/nvim/lua/thomas/plugins/gitblame.lua @@ -5,8 +5,9 @@ if not gitblame then end gitblame.setup({ + highlight_group = "Whitespace", message_template = " ", date_format = "%r (%x)", message_when_not_committed = "", - gitblame_use_blame_commit_file_urls = true, + use_blame_commit_file_urls = true, })