aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/remap.lua
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2024-05-20 21:53:48 +0200
committerpml68 <tutorialmester@gmail.com>2024-05-20 21:53:48 +0200
commitfa500847efc9c1201b87812fd8893a3fbaffac60 (patch)
treea12861ca6114a0d5840f1ed9a68b937fc402270d /lua/pml68/remap.lua
parentfeat: change nvim-highlight-colors render mode to 'virtual' (diff)
downloadnvim-fa500847efc9c1201b87812fd8893a3fbaffac60.tar.gz
feat: add remap for toggling inlay hints
Diffstat (limited to '')
-rw-r--r--lua/pml68/remap.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/pml68/remap.lua b/lua/pml68/remap.lua
index 1d72477..eb37b9e 100644
--- a/lua/pml68/remap.lua
+++ b/lua/pml68/remap.lua
@@ -61,6 +61,15 @@ vim.api.nvim_create_autocmd('LspAttach', {
vim.keymap.set('n', '<F2>', '<cmd>lua vim.lsp.buf.rename()<CR>', opts)
vim.keymap.set({ 'n', 'x' }, '<S-f>', '<cmd>lua vim.lsp.buf.format({async = true})<CR>', opts)
vim.keymap.set('n', 'gc', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts)
+ -- u/Blan_11
+ vim.keymap.set('n', '<leader>lh', function()
+ local ok = pcall(vim.lsp.inlay_hint.enable, vim.lsp.inlay_hint.is_enabled())
+ if ok then
+ vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled())
+ else
+ vim.lsp.inlay_hint.enable(0, not vim.lsp.inlay_hint.is_enabled())
+ end
+ end, { silent = true })
end
})