Merge pull request #3 from micaiah-effiong/fix/inden-blankline
indent blank line
This commit is contained in:
commit
a8da4f2575
13
init.lua
13
init.lua
|
@ -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
|
||||||
|
|
|
@ -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 = ''
|
||||||
|
|
Loading…
Reference in New Issue