mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
10 lines
379 B
Lua
10 lines
379 B
Lua
-- https://github.com/DNLHC/glance.nvim
|
|
local opts = { noremap = true, silent = true }
|
|
|
|
vim.keymap.set("n", "gld", "<CMD>Glance definitions<CR>", opts)
|
|
vim.keymap.set("n", "gli", "<CMD>Glance implementations<CR>", opts)
|
|
vim.keymap.set("n", "glr", "<CMD>Glance references<CR>", opts)
|
|
vim.keymap.set("n", "glt", "<CMD>Glance type_definitions<CR>", opts)
|
|
|
|
require("glance").setup()
|