mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
14 lines
178 B
Lua
14 lines
178 B
Lua
local nvim_version = vim.version()
|
|
|
|
if nvim_version.minor ~= 11 then
|
|
return
|
|
end
|
|
|
|
vim.diagnostic.config({
|
|
virtual_lines = true,
|
|
})
|
|
|
|
vim.lsp.enable({
|
|
"clangd",
|
|
"luals",
|
|
})
|