diff options
author | LostNeophyte <[email protected]> | 2023-01-17 08:54:58 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-01-17 08:54:58 +0100 |
commit | b97298ccf5c7094bf99c11413bb0dab9e6d4f759 (patch) | |
tree | 202f5baf71c61b1a9fa7ccf9caec158a2ba342d1 /lua/lvim/core | |
parent | 5b8bfc85110c427bdadaf41a539c43a1c55fe5ae (diff) |
fix(indentlines): typo (#3743)
* fix(indentlines): set indent_char to LineLeft
* fix(indentlines): typo
Diffstat (limited to 'lua/lvim/core')
-rw-r--r-- | lua/lvim/core/indentlines.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/indentlines.lua b/lua/lvim/core/indentlines.lua index 91bf5a59..3097daf8 100644 --- a/lua/lvim/core/indentlines.lua +++ b/lua/lvim/core/indentlines.lua @@ -18,7 +18,7 @@ M.config = function() "text", }, char = lvim.icons.ui.LineLeft, - indent_char = lvim.icons.ui.LineLeft, + context_char = lvim.icons.ui.LineLeft, show_trailing_blankline_indent = false, show_first_indent_level = true, use_treesitter = true, |