It's not because we use netrw that we cannot have nice things! This plugin adds a layer of ✨bling✨ and configuration to your favorite file explorer.
Install the plugin with your preferred package manager:
Enable the plugin with the default configuration:
require("netrw").setup({})
Or customize the options to fit your needs:
require("netrw").setup({
-- File icons to use when `use_devicons` is false or if
-- no icon is found for the given file type.
icons = {
symlink = '',
directory = '',
file = '',
},
-- Uses mini.icon or nvim-web-devicons if true, otherwise use the file icon specified above
use_devicons = true,
mappings = {
-- Function mappings receive an object describing the node under the cursor
['p'] = function(payload) print(vim.inspect(payload)) end,
-- String mappings are executed as vim commands
['<Leader>p'] = ":echo 'hello world'<CR>",
},
})
This project accepts contributions. Feel free to open issues for questions, feature ideas, bugs, etc.
Before submitting a PR, make sure you run make lint
with stylua
and luacheck
installed.