nvim: mini indentline fix updated config option
Mini changed the configuration for its indentline module to use a table instead of a function for its animation generation configuration. This commit updates the config accordingly.
This commit is contained in:
parent
e5b3f029b2
commit
9a8a14f85f
1 changed files with 3 additions and 3 deletions
|
@ -1,11 +1,11 @@
|
||||||
require('mini.ai').setup()
|
require('mini.ai').setup()
|
||||||
require('mini.comment').setup()
|
require('mini.comment').setup()
|
||||||
require('mini.cursorword').setup({delay = 500})
|
require('mini.cursorword').setup({ delay = 500 })
|
||||||
require('mini.fuzzy').setup()
|
require('mini.fuzzy').setup()
|
||||||
require('mini.indentscope').setup({
|
require('mini.indentscope').setup({
|
||||||
symbol = "│",
|
symbol = "│",
|
||||||
draw = {animation = require('mini.indentscope').gen_animation('none')},
|
draw = { animation = require('mini.indentscope').gen_animation.none() },
|
||||||
options = {indent_at_cursor = false}
|
options = { indent_at_cursor = false }
|
||||||
})
|
})
|
||||||
require('mini.map').setup()
|
require('mini.map').setup()
|
||||||
-- require('mini.move').setup() -- has not hit stable yet
|
-- require('mini.move').setup() -- has not hit stable yet
|
||||||
|
|
Loading…
Reference in a new issue