Compare commits

...

2 commits

Author SHA1 Message Date
a124b15366 fixed 0.11 deprecations
Some checks failed
Send submodule updates to parent repo / update (main) (push) Has been cancelled
Send submodule updates to parent repo / update (tiling) (push) Has been cancelled
2025-04-18 15:45:26 +02:00
123281b16c lspconfig: setup zig 2025-04-18 15:45:17 +02:00
4 changed files with 3 additions and 3 deletions

View file

@ -10,6 +10,6 @@ return {
theme = "dragon" theme = "dragon"
}) })
vim.cmd("colorscheme kanagawa") vim.cmd("colorscheme kanagawa-dragon")
end end
} }

View file

@ -13,7 +13,7 @@ return {
local mason_lspconfig = require("mason-lspconfig") local mason_lspconfig = require("mason-lspconfig")
mason_lspconfig.setup({ mason_lspconfig.setup({
ensure_installed = { "clangd", "lua_ls", "matlab_ls", "mesonlsp", "texlab", "ts_ls", "volar", "zig" } ensure_installed = { "clangd", "lua_ls", "matlab_ls", "mesonlsp", "texlab", "ts_ls", "volar", "zls" }
}) })
end end

View file

@ -29,5 +29,6 @@ return {
filetypes = { "typescript", "javascript", "javascriptreact", "typescriptreact", "vue" }, filetypes = { "typescript", "javascript", "javascriptreact", "typescriptreact", "vue" },
}) })
lspconfig.volar.setup({}) lspconfig.volar.setup({})
lspconfig.zig.setup({})
end end
} }

View file

@ -1,4 +1,3 @@
vim.o.background = ""
vim.cmd("set number") vim.cmd("set number")
vim.cmd("set expandtab") vim.cmd("set expandtab")
vim.cmd("set tabstop=2") vim.cmd("set tabstop=2")