file manager!!!!

This commit is contained in:
voidarclabs
2025-04-18 14:51:34 +01:00
parent 3e0664c119
commit 82dc4c4230
3 changed files with 26 additions and 23 deletions

View File

@@ -17,6 +17,7 @@ vim.keymap.set("n", "<up>", '<cmd>echo "Use k to move!!"<CR>')
vim.keymap.set("n", "<down>", '<cmd>echo "Use j to move!!"<CR>') vim.keymap.set("n", "<down>", '<cmd>echo "Use j to move!!"<CR>')
vim.keymap.set("n", "<C-w>d", "<cmd>lua Snacks.dashboard()<CR>") vim.keymap.set("n", "<C-w>d", "<cmd>lua Snacks.dashboard()<CR>")
vim.keymap.set("n", "<A-w>d", "<cmd>lua Snacks.dashboard()<CR>")
vim.keymap.set("n", "<C-p>", "<cmd>JABSOpen<CR>") vim.keymap.set("n", "<C-p>", "<cmd>JABSOpen<CR>")
vim.keymap.set("n", "<M-w>", "<C-w>") vim.keymap.set("n", "<M-w>", "<C-w>")

View File

@@ -17,6 +17,7 @@
"nvim-lint": { "branch": "master", "commit": "3615c26c4922ae5f7366f0c1943a0e7cece04325" }, "nvim-lint": { "branch": "master", "commit": "3615c26c4922ae5f7366f0c1943a0e7cece04325" },
"nvim-lspconfig": { "branch": "master", "commit": "1a3a429efec62af632dfd8fa9b52fa226f655ec2" }, "nvim-lspconfig": { "branch": "master", "commit": "1a3a429efec62af632dfd8fa9b52fa226f655ec2" },
"nvim-web-devicons": { "branch": "master", "commit": "c90dee4e930ab9f49fa6d77f289bff335b49e972" }, "nvim-web-devicons": { "branch": "master", "commit": "c90dee4e930ab9f49fa6d77f289bff335b49e972" },
"simplyfile.nvim": { "branch": "main", "commit": "c4dfc0f3431898c3abbef267b226f6cdd2a67b38" },
"snacks.nvim": { "branch": "main", "commit": "bc0630e43be5699bb94dadc302c0d21615421d93" }, "snacks.nvim": { "branch": "main", "commit": "bc0630e43be5699bb94dadc302c0d21615421d93" },
"tint.nvim": { "branch": "master", "commit": "586e87f00c8b0f5e857cefe10839e41f3e8c6d01" }, "tint.nvim": { "branch": "master", "commit": "586e87f00c8b0f5e857cefe10839e41f3e8c6d01" },
"vim-floaterm": { "branch": "master", "commit": "4e28c8dd0271e10a5f55142fb6fe9b1599ee6160" } "vim-floaterm": { "branch": "master", "commit": "4e28c8dd0271e10a5f55142fb6fe9b1599ee6160" }

View File

@@ -1,24 +1,25 @@
return { return {
"echasnovski/mini.nvim", "echasnovski/mini.nvim",
version = "*", -- or a specific tag version = "*", -- or a specific tag
config = function() config = function()
-- Only load the modules you want -- Only load the modules you want
require("mini.animate").setup() require("mini.animate").setup()
require("mini.pairs").setup() require("mini.pairs").setup()
require("mini.statusline").setup() require("mini.files").setup()
require("mini.cursorword").setup({ require("mini.statusline").setup()
content = { require("mini.cursorword").setup({
active = true, content = {
} active = true,
}) },
require("mini.notify").setup() })
require("mini.surround").setup({ require("mini.notify").setup()
mappings = { require("mini.surround").setup({
add = "gsa", -- Add surrounding mappings = {
delete = "gsd", -- Delete surrounding add = "gsa", -- Add surrounding
find = "gsf", -- Find surrounding delete = "gsd", -- Delete surrounding
replace = "gsr", -- Replace surrounding find = "gsf", -- Find surrounding
}, replace = "gsr", -- Replace surrounding
}) },
end, })
} end,
}