4 Personal Config
oupson edited this page 2022-09-23 17:38:30 +02:00

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 `

return {'pyright', 'clangd', 'rust_analyzer', 'zls', 'gopls', 'r_language_server'}

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 :

local module = {}

function module.startup(use)
	use 'ziglang/zig.vim'
end

return module