Configuration files

nvim: remove `mini.files`

Changed files
-20
.config
nvim
lua
plugins
-1
.config/nvim/lazy-lock.json
··· 6 6 "kanagawa.nvim": { "branch": "master", "commit": "aef7f5cec0a40dbe7f3304214850c472e2264b10" }, 7 7 "lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" }, 8 8 "lualine.nvim": { "branch": "master", "commit": "47f91c416daef12db467145e16bed5bbfe00add8" }, 9 - "mini.files": { "branch": "main", "commit": "22c64f010eef047ed270e29e7cc266cd4740787e" }, 10 9 "mini.surround": { "branch": "main", "commit": "88c52297ed3e69ecf9f8652837888ecc727a28ee" }, 11 10 "nvim-bufdel": { "branch": "main", "commit": "523d58e94e7212fff3e05c247b962dc8f93bcfde" }, 12 11 "nvim-notify": { "branch": "master", "commit": "8701bece920b38ea289b457f902e2ad184131a5d" },
-19
.config/nvim/lua/plugins/mini.lua
··· 1 1 ---@type LazySpec 2 2 return { 3 3 { 4 - "echasnovski/mini.files", 5 - version = false, 6 - opts = { 7 - windows = { preview = true, width_preview = 80 }, 8 - options = { 9 - use_as_default_explorer = false, 10 - }, 11 - }, 12 - keys = { 13 - { 14 - "<leader>f", 15 - function() 16 - require("mini.files").open(vim.api.nvim_buf_get_name(0), true) 17 - end, 18 - desc = "Open mini files", 19 - }, 20 - }, 21 - }, 22 - { 23 4 "echasnovski/mini.surround", 24 5 event = "VeryLazy", 25 6 opts = {