1
0
mirror of https://github.com/jiriks74/presence.nvim synced 2024-11-23 20:37:50 +01:00
presence.nvim/lua/presence/file_explorers.lua
Nick 25076ce092
All checks were successful
Luacheck / Luacheck (push) Successful in 9m43s
StyLua / StyLua (push) Successful in 1m46s
feat: Support oil.nvim file explore (#58)
* feat: Support oil.nvim file explore

* feat: more explicitly look for oil at the start of file_path

* feat: oil working with git buttons

work by @nick22985
2024-08-11 09:05:33 +02:00

12 lines
296 B
Lua

-- Different neovim file explorer names keyed by filetype or buffer name
return {
["NvimTree"] = "NvimTree",
["NERD_tree_"] = "NERDTree",
["[defx] default-"] = "Defx",
["netrw"] = "Netrw",
["TelescopePrompt"] = "Telescope",
["neo-tree"] = "Neotree",
["fern"] = "Fern",
["oil"] = "Oil",
}