Updated treesitter setting to remove use of deprecated 'maintained' option and simply replaced it to use 'all' treesitter syntaxes (haven't had a problem with it so far). Changed blankline options slightly to remove annoying animations and quick switching of which blankline it shows depending on where my cursor is -- both proved to be too much of a distraction when I just need to interact with the indentation context every now and again and it should just allow me a quick glance at the indentation level the rest of the time.
7 lines
243 B
Lua
7 lines
243 B
Lua
require('mini.comment').setup()
|
|
require('mini.indentscope').setup({
|
|
symbol = "│",
|
|
draw = {animation = require('mini.indentscope').gen_animation('none')},
|
|
options = {indent_at_cursor = false}
|
|
})
|
|
require('mini.trailspace').setup()
|