blank slate

This commit is contained in:
2026-04-09 20:35:13 +01:00
parent cfc5baa8ad
commit 761f890b10
20 changed files with 0 additions and 810 deletions

View File

@@ -1,39 +0,0 @@
return {
"neovim/nvim-lspconfig",
config = function()
vim.lsp.config("lua_ls", {
settings = {
Lua = {
-- Tell the server to let Neovim handle snippet expansion
completion = {
callSnippet = "Replace",
},
-- Use LuaJIT (which Neovim uses)
runtime = {
version = "LuaJIT",
},
},
},
})
vim.lsp.config("emmet_ls", {
-- capabilities = require("cmp_nvim_lsp").default_capabilities(),
filetypes = { "html", "css", "javascriptreact", "typescriptreact" },
init_options = {
html = {
options = {
["bem.enabled"] = true,
},
},
},
})
vim.lsp.enable({
"lua_ls",
"ts_ls",
"pylsp",
"cssls",
"nixd",
"rust_analyzer",
"emmet_ls",
})
end,
}