add indent-blankline plugin

add neotree module
This commit is contained in:
David Hendén 2024-11-25 12:55:13 -04:00
parent 3280045e39
commit d51e4670c0
2 changed files with 12 additions and 2 deletions

View file

@ -435,7 +435,7 @@ require('lazy').setup({
-- Fuzzy find all the symbols in your current workspace.
-- Similar to document symbols, except searches over your entire project.
map('<leader>ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols')
--map('<leader>ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols')
-- Rename the variable under your cursor.
-- Most Language Servers support renaming across files, etc.
@ -576,6 +576,14 @@ require('lazy').setup({
end,
},
{
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
---@module "ibl"
---@type ibl.config
opts = {},
},
{ -- Autoformat
'stevearc/conform.nvim',
event = { 'BufWritePre' },
@ -828,7 +836,6 @@ require('lazy').setup({
require 'plugins.neo-tree',
require 'plugins.gitsigns', -- adds gitsigns recommend keymaps
require 'plugins.codeium',
require 'plugins.terraform',
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- This is the easiest way to modularize your config.