diff options
Diffstat (limited to 'dotfiles/vim-dev.lua')
-rw-r--r-- | dotfiles/vim-dev.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dotfiles/vim-dev.lua b/dotfiles/vim-dev.lua index 5f32244..ae74e91 100644 --- a/dotfiles/vim-dev.lua +++ b/dotfiles/vim-dev.lua | |||
@@ -34,6 +34,10 @@ function on_attach(client, bufnr) | |||
34 | 34 | ||
35 | -- Rust specific | 35 | -- Rust specific |
36 | buf_set_keymap("n", "<leader>sh", "<cmd>RustToggleInlayHints<CR>", opts) | 36 | buf_set_keymap("n", "<leader>sh", "<cmd>RustToggleInlayHints<CR>", opts) |
37 | |||
38 | require("lsp_signature").on_attach({ | ||
39 | hint_prefix = "param: " | ||
40 | }) | ||
37 | end | 41 | end |
38 | 42 | ||
39 | local capabilities = vim.lsp.protocol.make_client_capabilities() | 43 | local capabilities = vim.lsp.protocol.make_client_capabilities() |