Skip to content

Commit

Permalink
lazy: load lsp via lazy config
Browse files Browse the repository at this point in the history
Signed-off-by: Filip Lobpreis <[email protected]>
  • Loading branch information
Filip Lobpreis committed Jan 17, 2025
1 parent 8af2053 commit 2f133f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ require("usr.DAP")
require("usr.gitsigns")
require("usr.illuminate")
require("usr.impatient")
require("usr.lsp")
require("usr.lualine")
require("usr.navigation")
require("usr.project")
Expand Down
7 changes: 6 additions & 1 deletion lua/usr/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,12 @@ return {
-- LSP
"williamboman/mason.nvim",
"williamboman/mason-lspconfig.nvim",
"neovim/nvim-lspconfig", -- enable LSP
{
"neovim/nvim-lspconfig", -- enable LSP
config = function()
require("usr.lsp")
end,
},
"nvimtools/none-ls.nvim",
{
"lervag/vimtex",
Expand Down

0 comments on commit 2f133f9

Please sign in to comment.