added hardtime plugin

main
Mathias Rothenhaeusler 2024-01-15 19:03:38 +01:00
parent 0e8cf26144
commit 725b4e75bd
2 changed files with 14 additions and 1 deletions

View File

@ -214,3 +214,9 @@ lspconfig["intelephense"].setup({
on_attach = on_attach,
filetypes = { "php" },
})
lspconfig["slint_lsp"].setup({
on_attach = on_attach,
capabilities = capabilities,
filetypes = { "slint" },
})

View File

@ -96,5 +96,12 @@ return {
dependencies = {
'nvim-telescope/telescope.nvim'
}
}
},
-- lazy.nvim
{
"m4xshen/hardtime.nvim",
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
opts = {}
},
}