Mise à jour de 'Personal Config'

oupson 2022-09-23 17:38:01 +02:00
commit 4a7565f364
1 changed files with 29 additions and 0 deletions

29
Personal-Config.md Normal file

@ -0,0 +1,29 @@
# Personal Config
## Special files:
### lua > personal > init.lua
This file is loaded when neovim is launched.\
Place your configuration here`
### lua > personal > lspservers.lua
This file should return a list of lspservers.
Example `
```lua
return {'pyright', 'clangd', 'rust_analyzer', 'zls', 'gopls', 'r_language_server'}
```
### lua > personal > lua/personal/plugins.lua
This file is used to load personal plugins thanks to packer.
It should return a module containing a `startup` function with 1 parameter (the use function).
Example :
```lua
ocal module = {}
function module.startup(use)
use 'ziglang/zig.vim'
end
return module
```