Bohdan's terminal configuration

added search all symbols shortcut

bpavuk.neocities.org 5727aa8f 19240885

verified
Changed files
+9
nvim
.config
nvim
+9
nvim/.config/nvim/lua/mappings.lua
··· 4 4 5 5 local map = vim.keymap.set 6 6 local tmux = require "tmux" 7 + local telescope = { 8 + builtin = require "telescope.builtin", 9 + this = require "telescope", 10 + } 7 11 local dap = require "dap" 8 12 9 13 map("n", ";", ":", { desc = "CMD enter command mode" }) ··· 42 46 map("n", "<leader>dbsO", function() 43 47 dap.step_out() 44 48 end, { desc = "Step out" }) 49 + 50 + -- LSP 51 + map("n", "<leader>fe", function() 52 + telescope.builtin.lsp_workspace_symbols() 53 + end, { desc = "Find everything (LSP)" })