Inintal commit

This commit is contained in:
2026-02-14 15:05:12 +01:00
commit fbbd357ee2
17 changed files with 3729 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
return {
"lazar/scl_lsp",
ft = "scl",
lazy = true,
dependencies = {
"neovim/nvim-lspconfig",
"nvim-treesitter/nvim-treesitter",
"saghen/blink.cmp",
},
config = function(_, opts)
require("scl_lsp").setup({
server_path = opts.server_path,
lsp = opts.lsp,
cmp = opts.cmp ~= false,
workspace_types = opts.workspace_types ~= false,
auto_prefix = opts.auto_prefix ~= false,
project_root = opts.project_root,
library_paths = opts.library_paths,
debug = opts.debug,
})
end,
}