Skip to content

Commit f7e545a

Browse files
committed
refactor(#2875): multi instance renderer
1 parent fb01d1a commit f7e545a

File tree

1 file changed

+4
-2
lines changed
  • lua/nvim-tree/renderer/components

1 file changed

+4
-2
lines changed

Diff for: lua/nvim-tree/renderer/components/init.lua

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
local M = {}
22

3-
M.padding = require "nvim-tree.renderer.components.padding"
3+
M.diagnostics = require "nvim-tree.renderer.components.diagnostics"
44
M.full_name = require "nvim-tree.renderer.components.full-name"
55
M.icons = require "nvim-tree.renderer.components.icons"
6+
M.padding = require "nvim-tree.renderer.components.padding"
67

78
function M.setup(opts)
8-
M.padding.setup(opts)
9+
M.diagnostics.setup(opts)
910
M.full_name.setup(opts)
1011
M.icons.setup(opts)
12+
M.padding.setup(opts)
1113
end
1214

1315
return M

0 commit comments

Comments
 (0)