mirror of
https://github.com/jiriks74/presence.nvim
synced 2024-11-23 20:37:50 +01:00
25076ce092
* 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
12 lines
296 B
Lua
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",
|
|
}
|