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

View file

@ -16,7 +16,7 @@ local peek_definition = function()
end end
local inlay_hint_toggle = function() 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 end
_G.InlayHintToggle = inlay_hint_toggle _G.InlayHintToggle = inlay_hint_toggle
@ -242,7 +242,7 @@ local on_attach = function(client, bufnr)
end end
if client.supports_method('textDocument/inlayHint') then if client.supports_method('textDocument/inlayHint') then
vim.lsp.inlay_hint.enable(bufnr, false) vim.lsp.inlay_hint.enable(false)
end end
end end