Skip to content

Commit 1bad89f

Browse files
aimuzovaaronik
authored andcommitted
Fix indents
1 parent 70c094f commit 1bad89f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lua/treewalker/init.lua

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,28 @@ local Treewalker = {}
99
-- Default setup() options
1010
---@type Opts
1111
Treewalker.opts = {
12-
highlight = true,
13-
highlight_duration = 250,
14-
highlight_group = "ColorColumn",
12+
highlight = true,
13+
highlight_duration = 250,
14+
highlight_group = "ColorColumn",
1515
}
1616

1717
---@param opts Opts | nil
1818
function Treewalker.setup(opts)
19-
if opts then
19+
if opts then
2020
Treewalker.opts = vim.tbl_deep_extend('force', Treewalker.opts, opts)
21-
end
21+
end
2222
end
2323

2424
-- TODO This is clever kinda, but it breaks autocomplete of `require('treewalker')`
2525

2626
-- Assign move_{in,out,up,down}
2727
for fn_name, fn in pairs(movement) do
28-
Treewalker[fn_name] = fn
28+
Treewalker[fn_name] = fn
2929
end
3030

3131
-- Assign swap_{up,down}
3232
for fn_name, fn in pairs(swap) do
33-
Treewalker[fn_name] = fn
33+
Treewalker[fn_name] = fn
3434
end
3535

3636
return Treewalker

0 commit comments

Comments
 (0)