16 lines
493 B
Lua
16 lines
493 B
Lua
vim.pack.add({
|
|
'https://github.com/neovim/nvim-lspconfig',
|
|
'https://github.com/mason-org/mason.nvim',
|
|
'https://github.com/rachartier/tiny-inline-diagnostic.nvim',
|
|
})
|
|
|
|
-- mason
|
|
require("mason").setup()
|
|
|
|
-- diagnostics
|
|
require("tiny-inline-diagnostic").setup({
|
|
-- Choose a preset style for diagnostic appearance
|
|
-- Available: "modern", "classic", "minimal", "powerline", "ghost", "simple", "nonerdfont", "amongus"
|
|
preset = "modern",
|
|
})
|
|
require("tiny-inline-diagnostic").enable()
|