mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:20:04 +08:00
.. | ||
.github | ||
autoload | ||
doc | ||
lua/indent_blankline | ||
plugin | ||
LICENSE.md | ||
README.md |
Indent Blankline
This plugin adds indentation guides to all lines (including empty lines).
It uses Neovims virtual text feature and no conceal
This plugin requires Neovim 0.5 or higher. It makes use of Neovim only
features so it will not work in Vim.
There is a legacy version of the plugin that supports Neovim 0.4 under the
branch version-1
Settings
A lot of Yggdroot/indentLine options should work out of the box.
Please see :help indent_blankline.txt
for more details.
Install
Use your favourite plugin manager to install.
Example with Packer
-- init.lua
require("packer").startup(
function()
use "lukas-reineke/indent-blankline.nvim"
end
)
Example with Plug
" init.vim
call plug#begin('~/.vim/plugged')
Plug 'lukas-reineke/indent-blankline.nvim'
call plug#end()
Screenshots
Default settings
With custom listchars
and g:indent_blankline_space_char
With custom g:indent_blankline_char_highlight_list
With custom background highlight
With context indent highlighted by treesitter
Thanks
Special thanks to Yggdroot/indentLine