mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
nvim: add qml
This commit is contained in:
parent
caa13b57b3
commit
ed3be858a6
2 changed files with 19 additions and 0 deletions
|
|
@ -38,6 +38,7 @@ require("lazy").setup({
|
|||
{ import = "user.plugins.lang.typescript" },
|
||||
{ import = "user.plugins.lang.vue" },
|
||||
{ import = "user.plugins.lang.markdown" },
|
||||
{ import = "user.plugins.lang.qml" },
|
||||
},
|
||||
install = {
|
||||
colorscheme = { "catppuccin", "habamax" },
|
||||
|
|
|
|||
18
nvim/lua/user/plugins/lang/qml.lua
Normal file
18
nvim/lua/user/plugins/lang/qml.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
local lspservers = {
|
||||
qmlls = {}
|
||||
}
|
||||
|
||||
return {
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
ensure_installed = { "qmljs" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
servers = lspservers
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue