INIT
This commit is contained in:
@@ -19,3 +19,7 @@ vim.keymap.set({ "n", "t", "i" }, "<space>e", function()
|
||||
explorer:focus()
|
||||
end
|
||||
end, { desc = "Smart Explorer Focus Toggle" })
|
||||
|
||||
vim.keymap.set("n", "<leader>tp", function()
|
||||
require("neotest").output_panel.toggle()
|
||||
end, { desc = "Toggle Output Panel" })
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
return {
|
||||
{
|
||||
"folke/snacks.nvim",
|
||||
opts = {
|
||||
picker = {
|
||||
hidden = true, -- Applies hidden files to all pickers (grep, files, etc.)
|
||||
sources = {
|
||||
grep = {
|
||||
layout = {
|
||||
preview = false, -- Completely disables the right preview pane for grep
|
||||
},
|
||||
},
|
||||
},
|
||||
matters = {
|
||||
file = {
|
||||
filename_first = true, -- Displays filename BEFORE the directory path
|
||||
truncate = "left",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user