fix diff highlights not working on gitcommit filetypes (#1317)

removed indentline char as it moves indentline a lil bit towards right whenever contextstart highlight shows , check https://github.com/lukas-reineke/indent-blankline.nvim/issues/454
This commit is contained in:
siduck 2022-07-13 09:51:20 +05:30
parent 7b683eaf63
commit 37b2c53a46
2 changed files with 1 additions and 2 deletions

View File

@ -33,7 +33,6 @@ M.blankline = function()
local options = {
indentLine_enabled = 1,
char = "",
filetype_exclude = {
"help",
"terminal",

View File

@ -64,7 +64,7 @@ local plugins = {
-- git stuff
["lewis6991/gitsigns.nvim"] = {
opt = true,
ft = "gitcommit",
setup = function()
require("core.lazy_load").gitsigns()
end,