This commit is contained in:
2023-06-08 01:18:31 +02:00
parent 2d81e0a579
commit ec5fb1d947
5 changed files with 54 additions and 50 deletions

View File

@@ -61,6 +61,9 @@ map("n", "<Leader>ip", ":TroubleToggle<CR>", opts) -- [i]nspect [p]rob
map("n", "<Leader>ii", ":Lspsaga incomming_calls<CR>", opts) -- [i]nspect [i]ncomming_calls
map("n", "<Leader>io", ":Lspsaga outgoing_calls<CR>", opts) -- [i]nspect [o]utgoing_calls
map("v", "<Leader>ai", ":'<,'>NeoAIContext<CR>")
map("n", "<Leader>ai", ":NeoAI<CR>")
map({ "n", "v" }, "<Leader>t", require("max.functions.translate"), opts)
-- DAP Functionality

View File

@@ -2,6 +2,7 @@ return {
"edluffy/hologram.nvim",
ft = "markdown",
lazy = false,
enabled = false,
opts = {
auto_display = true,
}

View File

@@ -1,5 +1,6 @@
return {
"rest-nvim/rest.nvim",
ft = { "http" },
dependencies = { "nvim-lua/plenary.nvim" },
config = true,
}