Merge pull request #3 from micaiah-effiong/fix/inden-blankline

indent blank line
This commit is contained in:
Micah Effiong 2023-10-23 13:26:12 +01:00 committed by GitHub
commit a8da4f2575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -186,7 +186,18 @@ require('lazy').setup({
-- Enable `lukas-reineke/indent-blankline.nvim` -- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help ibl` -- See `:help ibl`
main = 'ibl', main = 'ibl',
opts = {}, opts = {
indent = {
char = "",
-- highlight = {
-- "CursorColumn",
-- "Whitespace",
-- },
},
scope = {
show_start = false,
}
},
}, },
-- "gc" to comment visual regions/lines -- "gc" to comment visual regions/lines

View File

@ -21,3 +21,6 @@ vim.opt.splitbelow = true
-- horizontal cursorline -- horizontal cursorline
vim.opt.cursorline = true vim.opt.cursorline = true
-- disable mouse mode
vim.o.mouse = ''