lsp saga added

This commit is contained in:
Raoul Branten 2025-09-25 15:39:00 +02:00
parent 53f2fd8cda
commit ea1ac722c3
3 changed files with 24 additions and 0 deletions

View File

@ -1,4 +1,22 @@
local wk = require("which-key")
local builtin = require('telescope.builtin')
-- the leader key is <space>
-- telescope
wk.register({
f = {
name = "Telescope",
f = { builtin.find_files, "Find files" },
g = { builtin.live_grep, "Live grep" },
b = { builtin.buffers, "Find in buffers" },
c = { builtin.current_buffer_fuzzy_find, "Find in current buffer" },
h = { builtin.help_tags, "Find in help tags" },
m = { builtin.marks, "Find in marks" },
r = { builtin.resume, "Resume last find" },
}
}, { prefix = "<leader>" })
-- clear searchterm
vim.keymap.set('n', '<F5>', ':noh<CR>')

View File

@ -13,6 +13,7 @@ require("config.plugin.marks")
require("config.plugin.vim-indentwise")
require("config.plugin.indent-blankline")
require("config.plugin.scrollbar")
require("config.plugin.lspsaga")
require("config.plugin.gruvbox")
--require("config.plugin.lsp_config")

View File

@ -0,0 +1,5 @@
require('lspsaga').setup({
lightbulb = {
enable = false,
},
})