vim.g.mapleader = " " vim.g.maplocalleader = " " vim.g.which_key_use_floating_win = 1 vim.g.which_key_timeout = 300 local wk = require("whichkey_setup") local leader_keymap = { [""] = {"Telescope find_files", "Find file"}, [""] = {"b#", "Goto other buffer"}, [""] = {"Pounce", "Pounce"}, b = { name = "+buffers", b = {"Telescope buffers", "List buffers"}, d = {"bd", "Delete buffer"} }, w = { name = "+window", v = {"vsplit", "Split vertically"}, s = {"split", "Split horizontally"}, q = {"x", "Close window"}, -- No unsaved windows!! h = {"wincmd h", "Left"}, j = {"wincmd j", "Down"}, k = {"wincmd k", "Up"}, l = {"wincmd l", "Right"}, H = {"H", "Move Left"}, J = {"J", "Move Down"}, K = {"K", "Move Up"}, L = {"L", "Move Right"}, }, l = { name = "+lsp", e = {"lua vim.diagnostic.open_float()", "Show diagnostic at point"}, h = {"lua vim.diagnostic.goto_prev()", "Goto prev diagnostic"}, l = {"lua vim.diagnostic.goto_next()", "Goto next diagnostic"}, q = {"Telescope diagnostics", "Show all diagnostics"}, a = {"lua vim.lsp.add_workspace_folder()", "Add folder to workspace"}, r = {"lua vim.lsp.remove_workspace_folder()", "Remove folder from workspace"}, R = {"Telescope lsp_references", "List references"}, s = {"Telescope lsp_document_symbols", "List document symbols"}, S = {"Telescope lsp_workspace_symbols", "List workspace symbols"}, d = {"Telescope lsp_definitions", "Goto definition"}, }, g = { name = "+git", s = {"Telescope git_status", "Status"}, g = {"Neogit", "Neogit"}, c = {"Neogit commit", "Commit"}, }, } wk.register_keymap("leader", leader_keymap)