feat: remove project-nvim

This commit is contained in:
Michael Mandl 2025-04-22 09:30:21 +02:00
parent 4cbdafc642
commit b862a05887
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
4 changed files with 0 additions and 7 deletions

View file

@ -25,7 +25,6 @@ nnoremap("<leader>F", ":Flog -path=% -date=relative -open-cmd=new<CR>")
-- telescope
local telescope = require("telescope.builtin")
local telescope_themes = require("telescope.themes")
local telescope_projects = require("telescope").extensions.projects
local function map_telescope(key, telescope_function)
vim.api.nvim_set_keymap("n", key, "", {
@ -40,7 +39,6 @@ end
map_telescope("<leader>ff", telescope.find_files)
map_telescope("<leader>fb", telescope.buffers)
map_telescope("<leader>fg", telescope.git_files)
map_telescope("<leader>fp", telescope_projects.projects)
map_telescope("<leader>fs", telescope.lsp_document_symbols)
map_telescope("<leader>fS", telescope.lsp_dynamic_workspace_symbols)
map_telescope("<C-f>", telescope.grep_string)