diff --git a/init.lua b/init.lua index 52e1046e..f8e2cbf3 100644 --- a/init.lua +++ b/init.lua @@ -433,7 +433,7 @@ require('lazy').setup({ -- Fuzzy find all the symbols in your current workspace. -- Similar to document symbols, except searches over your entire project. - map('ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols') + --map('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. @@ -574,6 +574,14 @@ require('lazy').setup({ end, }, + { + 'lukas-reineke/indent-blankline.nvim', + main = 'ibl', + ---@module "ibl" + ---@type ibl.config + opts = {}, + }, + { -- Autoformat 'stevearc/conform.nvim', event = { 'BufWritePre' }, diff --git a/lua/core/keymaps.lua b/lua/core/keymaps.lua index 5167b715..6b13128a 100644 --- a/lua/core/keymaps.lua +++ b/lua/core/keymaps.lua @@ -38,6 +38,9 @@ return { map('n', 'bd', ':bd', { desc = 'close the current buffer' }), map('n', 'bl', ':FlyBuf', { desc = 'open up a list of all buffers in a float' }), + -- neo-tree + vim.keymap.set('n', 'e', ':Neotree reveal', { desc = 'Open file browser' }), + -- terraform map('n', 'ti', ':!terraform init -no-color', { desc = 'terraform init' }), map('n', 'tv', ':!terraform validate -no-color', { desc = 'terraform validate' }),