all repos

init.lua @ c268ed2

my nvim config
1 files changed, 18 insertions(+), 0 deletions(-)
feat: add new file, explorer, yeah...
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2024-02-12 22:25:20 +0200
Parent: bf345af
M lua/plugins/mini.lua

@@ -25,4 +25,22 @@ keys = {

{ "gS", mode = { "n", "v" } }, }, }, + { + "echasnovski/mini.files", + event = "VeryLazy", + init = function() + vim.api.nvim_create_user_command("MiniFiles", function() + -- selene: allow(undefined_variable) + MiniFiles.open() + end, {}) + end, + opts = { + mappings = { + synchronize = "<leader>w", + }, + options = { + permanent_delete = false, + }, + }, + }, }