This repository has been archived on 2025-01-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
opdavies.nvim/after/plugin/indent-blankline.lua

14 lines
250 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-04-26 00:04:44 +01:00
vim.api.nvim_set_hl(0, 'IndentBlankLineChar', { fg = "#2F313C" })
indent_blankline.setup {
show_end_of_line = true,
}
2023-04-26 00:04:44 +01:00