Compare commits

...

2 Commits

2 changed files with 4 additions and 2 deletions

View File

@ -9,6 +9,8 @@
--format='%(HEAD) %(color:bold green)%(committerdate:relative)%(color:reset)|%(color:yellow)%(refname:short)%(color:reset)|%(subject)' \
| head -n ${1:-15} | column -ts'|'; }; \
rb"
[branch]
sort = -committerdate
[blame]
# Mark any lines that have had a commit skipped using --ignore-rev with a `?`
markIgnoredLines = true

View File

@ -16,7 +16,7 @@ local peek_definition = function()
end
local inlay_hint_toggle = function()
vim.lsp.inlay_hint.enable(nil, not vim.lsp.inlay_hint.is_enabled())
vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled())
end
_G.InlayHintToggle = inlay_hint_toggle
@ -242,7 +242,7 @@ local on_attach = function(client, bufnr)
end
if client.supports_method('textDocument/inlayHint') then
vim.lsp.inlay_hint.enable(bufnr, false)
vim.lsp.inlay_hint.enable(false)
end
end