remove print

This commit is contained in:
Nareshkumar Rao 2025-05-15 05:12:13 +02:00
parent 2e7fb9adce
commit 589fb1df93

View File

@ -59,7 +59,6 @@ vim.lsp.config('rust_analyzer', {
vim.api.nvim_create_autocmd("LspAttach", {
callback = function(ev)
print("LspAttach called")
local opts = {buffer = ev.buf, remap = false}
vim.keymap.set("n", "gd", function() vim.lsp.buf.definition() end, opts)
end