From 8f70ecd882cf44567ddbffb469373501492938f9 Mon Sep 17 00:00:00 2001 From: LostNeophyte Date: Sat, 18 Feb 2023 08:55:05 +0100 Subject: refactor(builtins): move builtins to lvim/builtin --- lua/lvim/builtin/indentlines.lua | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 lua/lvim/builtin/indentlines.lua (limited to 'lua/lvim/builtin/indentlines.lua') diff --git a/lua/lvim/builtin/indentlines.lua b/lua/lvim/builtin/indentlines.lua new file mode 100644 index 00000000..43f025c6 --- /dev/null +++ b/lua/lvim/builtin/indentlines.lua @@ -0,0 +1,40 @@ +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 -- cgit v1.2.3