diff options
author | Justine Smithies <justine@smithies.me.uk> | 2025-02-18 19:40:40 +0000 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2025-02-18 19:40:40 +0000 |
commit | 2c0d7e97fb7e6469153ece2b89898bc49d71297a (patch) | |
tree | eae88142871dbf2b82170ec7a57efefe10564220 /.config/nvim/lua/plugins/indent-blankline.lua | |
parent | 4b68ae0f9c146fe6066570cd759ded30aaed3fd2 (diff) |
Diffstat (limited to '.config/nvim/lua/plugins/indent-blankline.lua')
-rw-r--r-- | .config/nvim/lua/plugins/indent-blankline.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.config/nvim/lua/plugins/indent-blankline.lua b/.config/nvim/lua/plugins/indent-blankline.lua index 423131f..572e0bd 100644 --- a/.config/nvim/lua/plugins/indent-blankline.lua +++ b/.config/nvim/lua/plugins/indent-blankline.lua @@ -1,5 +1,8 @@ return { "lukas-reineke/indent-blankline.nvim", - main = "ibl", - opts = {} + event = { "BufReadPre", "BufNewFile" }, + main = "ibl", + opts = { + indent = { char = "┊" }, + }, } |