| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A minimal file explorer plugin for Neovim.
demo.mp4You can easily install dsfe.nvim using your favorite Neovim plugin manager. Here's an example using Lazy.nvim:
require("lazy").setup({
"sys9kdr/dsfe.nvim",
config = function()
require('dsfe').setup()
end
}):e .Use the standard Neovim navigation keys (h, j, k, l) to move around, and press Enter to open files or directories.
dsfe.nvim disables some Netrw functionalities, so you don't need to disable Netrw manually. However, for a better experience, it is recommended to fully disable it using the following settings in init.lua.
-- in init.lua
vim.g.loaded_netrw = true
vim.g.loaded_netrwPlugin = true
vim.g.loaded_netrwSettings = true
vim.g.loaded_netrwFileHandlers = trueHidden files visibility is disabled by default. If you want to enable visibility set { show_hidden = true } at setup.
require("lazy").setup({
"sys9kdr/dsfe.nvim",
config = function()
require('dsfe').setup({ show_hidden = true })
end
})We welcome and encourage your contributions! Please feel free to submit any issues you encounter or create pull requests for improvements. We appreciate your input! 🚀
This plugin is heavily inspired from vim-molder and lir.nvim.
| Back | FazBrowse Home | New Git URL |