From ed3be858a6ccdb52ceb1daae8d69646b708ffac7 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sat, 4 Apr 2026 14:30:00 +0200 Subject: [PATCH] nvim: add qml --- nvim/lua/user/lazy.lua | 1 + nvim/lua/user/plugins/lang/qml.lua | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 nvim/lua/user/plugins/lang/qml.lua diff --git a/nvim/lua/user/lazy.lua b/nvim/lua/user/lazy.lua index 813e3eb..5f22539 100644 --- a/nvim/lua/user/lazy.lua +++ b/nvim/lua/user/lazy.lua @@ -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" }, diff --git a/nvim/lua/user/plugins/lang/qml.lua b/nvim/lua/user/plugins/lang/qml.lua new file mode 100644 index 0000000..e98101e --- /dev/null +++ b/nvim/lua/user/plugins/lang/qml.lua @@ -0,0 +1,18 @@ +local lspservers = { + qmlls = {} +} + +return { + { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { "qmljs" } + } + }, + { + "neovim/nvim-lspconfig", + opts = { + servers = lspservers + } + } +}