Install indent-blanklines plugin and show context

This commit is contained in:
2022-02-01 21:47:45 +03:00
parent 04ce099d24
commit 317c8c720f

View File

@@ -99,11 +99,26 @@ require("packer").startup(function(use)
"folke/twilight.nvim",
} })
use({
"lukas-reineke/indent-blankline.nvim",
config = function()
require("indent_blankline").setup({
space_char_blankline = " ",
show_current_context = true,
})
end,
})
if PACKER_BOOTSTRAP then
require("packer").sync()
end
end)
vim.cmd([[
hi IndentBlanklineChar guifg=#373737 guibg=none gui=none
hi IndentBlanklineContextChar guifg=#808080 guibg=none gui=none
]])
vim.g.mapleader = " "
require("user.options")