- Refactor init.lua structure - Update options.lua settings - Adjust .luacheckrc for new config
17 lines
168 B
Lua
17 lines
168 B
Lua
-- luacheck config for Neovim
|
|
local std = 'lua51'
|
|
|
|
globals = {
|
|
'vim',
|
|
}
|
|
|
|
ignore = {
|
|
'631',
|
|
}
|
|
|
|
self = false
|
|
|
|
exclude_files = {
|
|
'lua/custom/plugins/lazy.lua', }
|
|
}
|
|
|