Skip to content

Commit

Permalink
fix: add missing lsp-zero
Browse files Browse the repository at this point in the history
  • Loading branch information
vjousse committed Jul 17, 2024
1 parent 39252e7 commit 0455de3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions content/fr/tech/20240705-neovim-tutoriel-ide-a-partir-de-zero.md
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,19 @@ require("lazy").setup({ { import = "plugins" }, { import = "plugins.lsp"} }, {

Commençons par installer de quoi configurer nos LSP via [`nvim-lspconfig`](https://github.com/neovim/nvim-lspconfig) et [`lsp-zero`](https://lsp-zero.netlify.app/v4.x/).

Éditez `lua/plugins/lsp/lsp-zero.lua` et placez-y le contenu suivant :

**`lua/plugins/lsp/lsp-zero.lua`**

```lua
return {
"VonHeikemen/lsp-zero.nvim",
branch = "v4.x",
lazy = true,
config = false,
}
```

Éditez `lua/plugins/lsp/lspconfig.lua` et placez-y le contenu suivant :

**`lua/plugins/lsp/lspconfig.lua`**
Expand Down

0 comments on commit 0455de3

Please sign in to comment.