nvim/lua/plugins/indent_blankline.lua
Evie Litherland-Smith ea722bb23d lspconfig update and cspell config file
Start checking for executable before registering lsp server
Add missing dependencies for direnv, indent_blankline and nvim_neorg
Add standard .cspell.json, make now links it to home directory
2023-06-12 18:59:08 +01:00

12 lines
287 B
Lua

return {
"lukas-reineke/indent-blankline.nvim",
cond = not vim.g.vscode,
dependencies = {"nvim-treesitter"},
event = { "BufReadPre", "BufNewFile" },
config = true,
opts = {
show_current_context = true,
show_current_context_start = false,
},
}