diff options
author | LostNeophyte <[email protected]> | 2023-02-18 08:55:05 +0100 |
---|---|---|
committer | LostNeophyte <[email protected]> | 2023-02-18 08:55:05 +0100 |
commit | 8f70ecd882cf44567ddbffb469373501492938f9 (patch) | |
tree | 1498fd1de08c1aec46fa628701e1b5e9a47c4e3b /lua/lvim/core/builtins/indentlines.lua | |
parent | 3144585515000a1c3064c6129ded74f662598de1 (diff) |
refactor(builtins): move builtins to lvim/builtinrefactor/builtins
Diffstat (limited to 'lua/lvim/core/builtins/indentlines.lua')
-rw-r--r-- | lua/lvim/core/builtins/indentlines.lua | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/lua/lvim/core/builtins/indentlines.lua b/lua/lvim/core/builtins/indentlines.lua deleted file mode 100644 index 43f025c6..00000000 --- a/lua/lvim/core/builtins/indentlines.lua +++ /dev/null @@ -1,40 +0,0 @@ -local M = {} - -M.config = function() - lvim.builtin.indentlines = { - active = true, - options = { - enabled = true, - buftype_exclude = { "terminal", "nofile" }, - filetype_exclude = { - "help", - "startify", - "dashboard", - "lazy", - "neogitstatus", - "NvimTree", - "Trouble", - "text", - }, - char = lvim.icons.ui.LineLeft, - context_char = lvim.icons.ui.LineLeft, - show_trailing_blankline_indent = false, - show_first_indent_level = true, - use_treesitter = true, - show_current_context = true, - }, - } -end - -M.setup = function() - local status_ok, indent_blankline = pcall(reload, "indent_blankline") - if not status_ok then - return - end - - indent_blankline.setup(lvim.builtin.indentlines.options) - - return indent_blankline -end - -return M |