diff options
author | Joe <rbo@gmx.us> | 2023-12-28 18:13:22 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2023-12-28 18:13:22 +0100 |
commit | f0e0a85b1ef290049df65bcb008b5ec4b9ae75d4 (patch) | |
tree | e8476da6d395ac5cc1ffd8048d2146156892e10a /.config/nvim | |
parent | up (diff) | |
download | dotfiles-bsd-f0e0a85b1ef290049df65bcb008b5ec4b9ae75d4.tar.gz dotfiles-bsd-f0e0a85b1ef290049df65bcb008b5ec4b9ae75d4.tar.bz2 dotfiles-bsd-f0e0a85b1ef290049df65bcb008b5ec4b9ae75d4.tar.xz dotfiles-bsd-f0e0a85b1ef290049df65bcb008b5ec4b9ae75d4.tar.zst dotfiles-bsd-f0e0a85b1ef290049df65bcb008b5ec4b9ae75d4.zip |
up
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/lua/pack.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.config/nvim/lua/pack.lua b/.config/nvim/lua/pack.lua index 2d8bbef..c63409a 100644 --- a/.config/nvim/lua/pack.lua +++ b/.config/nvim/lua/pack.lua @@ -101,7 +101,12 @@ return require('packer').startup({function(use) use { 'lukas-reineke/indent-blankline.nvim', config = function() - require('ibl').setup() + local highlight = { + "Whitespace", + } + require('ibl').setup { + indent = { highlight = highlight, char = '┊', } + } end, } use ({ |