1
0
Fork 0

neovim: lukas-reineke/indent-blankline.nvim

This commit is contained in:
Jeremy Kaplan 2025-01-16 15:09:56 -05:00
commit bd4b979fb7
4 changed files with 17 additions and 0 deletions

View file

@ -5,6 +5,7 @@
"cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" }, "cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" },
"context.vim": { "branch": "master", "commit": "82eb26de265292808917b82f3eda2725b53d785c" }, "context.vim": { "branch": "master", "commit": "82eb26de265292808917b82f3eda2725b53d785c" },
"gitsigns.nvim": { "branch": "main", "commit": "220446c8c86a280180d852efac60991eaf1a21d4" }, "gitsigns.nvim": { "branch": "main", "commit": "220446c8c86a280180d852efac60991eaf1a21d4" },
"indent-blankline.nvim": { "branch": "master", "commit": "7a698a1d7ed755af9f5a88733b23ca246ce2df28" },
"lazy.nvim": { "branch": "main", "commit": "b97ee167f594c69656f985f919a00435a7bc7045" }, "lazy.nvim": { "branch": "main", "commit": "b97ee167f594c69656f985f919a00435a7bc7045" },
"lush.nvim": { "branch": "main", "commit": "45a79ec4acb5af783a6a29673a999ce37f00497e" }, "lush.nvim": { "branch": "main", "commit": "45a79ec4acb5af783a6a29673a999ce37f00497e" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "8e46de9241d3997927af12196bd8faa0ed08c29a" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "8e46de9241d3997927af12196bd8faa0ed08c29a" },

View file

@ -142,6 +142,9 @@ local theme = lush(function(injected_functions)
GitSignsDelete { bg = '#af3140', fg = '#FFFFFF' }, GitSignsDelete { bg = '#af3140', fg = '#FFFFFF' },
GitSignsCurrentLineBlame { CursorLine, fg = '#81aeea' }, 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 -- For :Lushify to work, the groups have to be spelled as `sym` called
-- on a string literal. -- on a string literal.

View file

@ -142,6 +142,9 @@ local theme = lush(function(injected_functions)
GitSignsDelete { bg = '#f9acb5', fg = '#FFFFFF' }, GitSignsDelete { bg = '#f9acb5', fg = '#FFFFFF' },
GitSignsCurrentLineBlame { CursorLine, fg = '#337ADA' }, 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 -- For :Lushify to work, the groups have to be spelled as `sym` called
-- on a string literal. -- on a string literal.

View file

@ -68,6 +68,16 @@ return {
{ "<leader>i", ":IlluminateToggle<cr>" }, { "<leader>i", ":IlluminateToggle<cr>" },
}, },
}, },
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
opts = {
indent = {
char = '',
},
scope = { enabled = false },
},
},
-- Treesitter -- Treesitter
{ {