neovim: lukas-reineke/indent-blankline.nvim
This commit is contained in:
parent
fcc8b6e32b
commit
bd4b979fb7
4 changed files with 17 additions and 0 deletions
|
|
@ -5,6 +5,7 @@
|
|||
"cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" },
|
||||
"context.vim": { "branch": "master", "commit": "82eb26de265292808917b82f3eda2725b53d785c" },
|
||||
"gitsigns.nvim": { "branch": "main", "commit": "220446c8c86a280180d852efac60991eaf1a21d4" },
|
||||
"indent-blankline.nvim": { "branch": "master", "commit": "7a698a1d7ed755af9f5a88733b23ca246ce2df28" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "b97ee167f594c69656f985f919a00435a7bc7045" },
|
||||
"lush.nvim": { "branch": "main", "commit": "45a79ec4acb5af783a6a29673a999ce37f00497e" },
|
||||
"mason-lspconfig.nvim": { "branch": "main", "commit": "8e46de9241d3997927af12196bd8faa0ed08c29a" },
|
||||
|
|
|
|||
|
|
@ -142,6 +142,9 @@ local theme = lush(function(injected_functions)
|
|||
GitSignsDelete { bg = '#af3140', fg = '#FFFFFF' },
|
||||
GitSignsCurrentLineBlame { CursorLine, fg = '#81aeea' },
|
||||
|
||||
-- lukas-reineke/indent-blankline.nvim
|
||||
IblIndent { fg = "#000000" },
|
||||
|
||||
-- For :Lushify to work, the groups have to be spelled as `sym` called
|
||||
-- on a string literal.
|
||||
|
||||
|
|
|
|||
|
|
@ -142,6 +142,9 @@ local theme = lush(function(injected_functions)
|
|||
GitSignsDelete { bg = '#f9acb5', fg = '#FFFFFF' },
|
||||
GitSignsCurrentLineBlame { CursorLine, fg = '#337ADA' },
|
||||
|
||||
-- lukas-reineke/indent-blankline.nvim
|
||||
IblIndent { fg = "#eeeeee" },
|
||||
|
||||
-- For :Lushify to work, the groups have to be spelled as `sym` called
|
||||
-- on a string literal.
|
||||
|
||||
|
|
|
|||
|
|
@ -68,6 +68,16 @@ return {
|
|||
{ "<leader>i", ":IlluminateToggle<cr>" },
|
||||
},
|
||||
},
|
||||
{
|
||||
"lukas-reineke/indent-blankline.nvim",
|
||||
main = "ibl",
|
||||
opts = {
|
||||
indent = {
|
||||
char = '┊',
|
||||
},
|
||||
scope = { enabled = false },
|
||||
},
|
||||
},
|
||||
|
||||
-- Treesitter
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue