fix(indent-blank): Fix color
This commit is contained in:
parent
d73493f878
commit
f50e50c89e
2
init.lua
2
init.lua
|
@ -1,11 +1,9 @@
|
|||
-- Set <space> as the leader key
|
||||
-- See `:help mapleader`
|
||||
-- NOTE: Must happen before plugins are required (otherwise wrong leader will be used)
|
||||
vim.g.mapleader = ' '
|
||||
vim.g.maplocalleader = ' '
|
||||
|
||||
-- [[ Install `lazy.nvim` plugin manager ]]
|
||||
-- https://github.com/folke/lazy.nvim
|
||||
-- `:help lazy.nvim.txt` for more info
|
||||
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
||||
if not vim.loop.fs_stat(lazypath) then
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
"nvim-web-devicons": { "branch": "master", "commit": "db0c864375c198cacc171ff373e76bfce2a85045" },
|
||||
"onedark.nvim": { "branch": "master", "commit": "dc3bad0121298f89b50aaff8599d1946e07eb4c2" },
|
||||
"plenary.nvim": { "branch": "master", "commit": "55d9fe89e33efd26f532ef20223e5f9430c8b0c0" },
|
||||
"rainbow-delimiters.nvim": { "branch": "master", "commit": "739a034046465d2b100151037401c24c42cb09cf" },
|
||||
"rose-pine": { "branch": "main", "commit": "c6d53a99d4c5c50fd10d5091208491b25130486b" },
|
||||
"telescope-ui-select.nvim": { "branch": "master", "commit": "6e51d7da30bd139a6950adf2a47fda6df9fa06d2" },
|
||||
"telescope.nvim": { "branch": "0.1.x", "commit": "d90956833d7c27e73c621a61f20b29fdb7122709" },
|
||||
|
|
|
@ -3,11 +3,13 @@ return {
|
|||
'lukas-reineke/indent-blankline.nvim',
|
||||
-- Enable `lukas-reineke/indent-blankline.nvim`
|
||||
-- See `:help ibl`
|
||||
dependencies = { 'HiPhish/rainbow-delimiters.nvim' },
|
||||
event = { 'BufReadPre', 'BufNewFile' },
|
||||
main = 'ibl',
|
||||
opts = {
|
||||
scope = { highlight = { 'RainbowDelimiterRed' }, char = '▎', show_start = true },
|
||||
exclude = {
|
||||
filetypes = { 'dashboard', 'alpha', 'help', 'nvim-tree', 'lazy', 'mason' },
|
||||
buftypes = { 'dashboard', 'alpha', 'help', 'lazy', 'mason' },
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue