This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
opdavies.nvim/after/plugin/indent-blankline.lua

13 lines
249 B
Lua
Raw Normal View History

local status_ok, indent_blankline = pcall(require, "indent_blankline")
if not status_ok then
return
end
vim.opt.list = true
2023-09-04 10:05:13 +00:00
vim.api.nvim_set_hl(0, "IndentBlankLineChar", { fg = "#2F313C" })
indent_blankline.setup {
show_end_of_line = true,
}