diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2023-10-11 06:49:54 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2023-10-12 07:04:00 +0800 |
commit | aa2a7f3b1d4a899107a9a592e8a7255da49a9735 (patch) | |
tree | 76aa22fd3d9f4807d20b71ceee62f807be2b57ab /nvim.lua | |
parent | fc87f4c3359c16ec39facd8a87d92285d28ffec5 (diff) |
Update
Diffstat (limited to 'nvim.lua')
-rw-r--r-- | nvim.lua | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -175,11 +175,11 @@ require('lazy').setup({ | |||
175 | -- Add indentation guides even on blank lines | 175 | -- Add indentation guides even on blank lines |
176 | 'lukas-reineke/indent-blankline.nvim', | 176 | 'lukas-reineke/indent-blankline.nvim', |
177 | -- Enable `lukas-reineke/indent-blankline.nvim` | 177 | -- Enable `lukas-reineke/indent-blankline.nvim` |
178 | -- See `:help indent_blankline.txt` | 178 | -- See `:help ibl` |
179 | main = "ibl", | 179 | main = "ibl", |
180 | opts = { | 180 | opts = { |
181 | char = '┊', | 181 | indent = { char = "┊" }, |
182 | show_trailing_blankline_indent = true, | 182 | whitespace = { highlight = { "Whitespace", "NonText" } }, |
183 | }, | 183 | }, |
184 | }, | 184 | }, |
185 | 185 | ||