Skip to content

How can I configure indent-blankline.nvim correctly? #1349

Answered by dpetka2001
neuromaancer asked this question in Q&A
Discussion options

You must be logged in to vote

vim.opt.list = true
vim.cmd([[highlight IndentBlanklineIndent1 guifg=#E06C75 gui=nocombine]])
vim.cmd([[highlight IndentBlanklineIndent2 guifg=#E5C07B gui=nocombine]])
vim.cmd([[highlight IndentBlanklineIndent3 guifg=#98C379 gui=nocombine]])
vim.cmd([[highlight IndentBlanklineIndent4 guifg=#56B6C2 gui=nocombine]])
vim.cmd([[highlight IndentBlanklineIndent5 guifg=#61AFEF gui=nocombine]])
vim.cmd([[highlight IndentBlanklineIndent6 guifg=#C678DD gui=nocombine]])

Put these in ~/.config/nvim/lua/config/options.lua and the following in ~/.config/nvim/lua/plugins/indent-blankline.lua

return {
	{
		"lukas-reineke/indent-blankline.nvim",
		opts = {
			space_char_blankline = " ",
			show_current_…

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@neuromaancer
Comment options

@davidgao7
Comment options

@dpetka2001
Comment options

Answer selected by neuromaancer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants