Skip to content

Commit

Permalink
feat(file-explorer): Add initial support for mini.files (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzaaft authored Jul 2, 2023
1 parent fb549e4 commit 0b678ea
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lua/astrocommunity/file-explorer/mini-files/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# mini.files

Neovim Lua plugin to navigate and manipulate file system. Part of mini.nvim library

**Repository:** <https://github.com/echasnovski/mini.nvim/blob/main/readmes/mini-files.md>

Navigate and manipulate file system

20 changes: 20 additions & 0 deletions lua/astrocommunity/file-explorer/mini-files/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
return {
{
"neo-tree.nvim",
enabled = false,
},
{
"echasnovski/mini.files",
keys = {
{
"<leader>e",
function() require("mini.files").open() end,
desc = "Explorer",
},
},
dependencies = {
"nvim-tree/nvim-web-devicons",
},
opts = {},
},
}

0 comments on commit 0b678ea

Please sign in to comment.