From db47c98ee8e2fdeef9a2d2534411aa42749411e6 Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Tue, 7 Nov 2023 09:17:25 -0600 Subject: [PATCH] formatting and dependency management. --- neovim/.config/nvim/lua/packages.lua | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/neovim/.config/nvim/lua/packages.lua b/neovim/.config/nvim/lua/packages.lua index 47e90f8..fdde544 100644 --- a/neovim/.config/nvim/lua/packages.lua +++ b/neovim/.config/nvim/lua/packages.lua @@ -51,6 +51,9 @@ require('lazy').setup({ }, { 'williamboman/mason.nvim', + dependencies = { + "williamboman/mason-lspconfig.nvim", + }, opts = { ui = { icons = { @@ -63,6 +66,9 @@ require('lazy').setup({ }, { "williamboman/mason-lspconfig.nvim", + dependencies = { + "neovim/nvim-lspconfig", + }, config = function() require("mason-lspconfig").setup({ ensure_installed = { @@ -123,10 +129,10 @@ require('lazy').setup({ 'nvim-telescope/telescope.nvim', config = true, dependencies = { - { 'nvim-lua/popup.nvim' }, - { 'nvim-treesitter/nvim-treesitter' }, - { 'nvim-telescope/telescope-symbols.nvim' }, - { 'nvim-telescope/telescope-file-browser.nvim' }, + 'nvim-lua/popup.nvim', + 'nvim-treesitter/nvim-treesitter', + 'nvim-telescope/telescope-symbols.nvim', + 'nvim-telescope/telescope-file-browser.nvim', } }, {