-- https://github.com/DNLHC/glance.nvim local status_ok, glance = pcall(require, "glance") if not status_ok then return end local keymap = vim.keymap.set local opts = { noremap = true, silent = true } glance.setup() -- Keymaps keymap("n", "gld", "Glance definitions", opts) keymap("n", "gli", "Glance implementations", opts) keymap("n", "glr", "Glance references", opts) keymap("n", "glt", "Glance type_definitions", opts)