all repos

init.lua @ 95d6d9c

my nvim config
1 files changed, 7 insertions(+), 1 deletions(-)
refactor(lsp): change way of loading some of plugins
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2023-09-26 10:16:26 +0300
Parent: df4acf2
M lua/plugins/lsp/init.lua

@@ -4,7 +4,11 @@ event = "BufRead",

dependencies = { "b0o/schemastore.nvim", { "williamboman/mason-lspconfig.nvim", config = true }, - { "j-hui/fidget.nvim", config = true }, + { + "j-hui/fidget.nvim", + config = true, + dependencies = { "nvim-lspconfig" }, + }, { "folke/neodev.nvim", config = true,

@@ -12,12 +16,14 @@ dependencies = { "nvim-lspconfig" },

}, { "jose-elias-alvarez/null-ls.nvim", + dependencies = { "nvim-lspconfig" }, config = function() require "plugins.lsp.null-ls" end, }, { "RRethy/vim-illuminate", + dependencies = { "nvim-lspconfig" }, config = function() require("illuminate").configure { providers = { "lsp", "treesitter" },