SexNvim/lua/config/indent-blankline.lua
2025-02-28 01:39:45 +03:00

19 lines
636 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

local ibl = require("ibl")
ibl.setup({
enabled = true,
indent = {
char = "", -- Символ для отображения отступов
tab_char = "", -- Символ для табуляций
},
scope = {
enabled = false, -- Отключено по умолчанию
},
exclude = {
filetypes = { "help", "alpha", "dashboard", "neo-tree", "Trouble", "lazy" }, -- Исключить определенные типы файлов
},
whitespace = {
remove_blankline_trail = false, -- Не удалять пробелы в конце строк
},
})