Merge branch 'master' of github.com:llcoolkm/nvim

This commit is contained in:
km 2024-11-25 18:55:05 +00:00
commit ef6e96715e
2 changed files with 12 additions and 1 deletions

View file

@ -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('<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.
@ -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' },