diff --git a/neovim/lazy-lock.json b/neovim/lazy-lock.json index c96ee17..c95d606 100644 --- a/neovim/lazy-lock.json +++ b/neovim/lazy-lock.json @@ -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" }, diff --git a/neovim/lua/jdkaplan/cool_theme.lua b/neovim/lua/jdkaplan/cool_theme.lua index ce858cf..a28ac9b 100644 --- a/neovim/lua/jdkaplan/cool_theme.lua +++ b/neovim/lua/jdkaplan/cool_theme.lua @@ -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. diff --git a/neovim/lua/jdkaplan/warm_theme.lua b/neovim/lua/jdkaplan/warm_theme.lua index 855c144..b612d01 100644 --- a/neovim/lua/jdkaplan/warm_theme.lua +++ b/neovim/lua/jdkaplan/warm_theme.lua @@ -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. diff --git a/neovim/lua/plugins/ide.lua b/neovim/lua/plugins/ide.lua index 804a094..3627c27 100644 --- a/neovim/lua/plugins/ide.lua +++ b/neovim/lua/plugins/ide.lua @@ -68,6 +68,16 @@ return { { "i", ":IlluminateToggle" }, }, }, + { + "lukas-reineke/indent-blankline.nvim", + main = "ibl", + opts = { + indent = { + char = '┊', + }, + scope = { enabled = false }, + }, + }, -- Treesitter {