From 57b069c17b45e862ef0f25904be0b435a6ce6039 Mon Sep 17 00:00:00 2001 From: David Senoner Date: Fri, 18 Apr 2025 15:38:27 +0200 Subject: [PATCH 1/3] lsp: remove unused servers --- lua/plugins/lsp.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 7716dbc..dc45f9d 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -13,8 +13,9 @@ return { local mason_lspconfig = require("mason-lspconfig") mason_lspconfig.setup({ - ensure_installed = { "clangd", "texlab", "lua_ls", "matlab_ls", "mesonlsp", "sqlls", "svlangserver", "ts_ls", "volar" } + ensure_installed = { "clangd", "lua_ls", "matlab_ls", "mesonlsp", "texlab", "ts_ls", "volar", "zig" } }) + end } } From 96ede284933703ebf461e466d858cbc67abe75f8 Mon Sep 17 00:00:00 2001 From: David Senoner Date: Fri, 18 Apr 2025 15:39:04 +0200 Subject: [PATCH 2/3] lspconfig: setup zig --- lua/plugins/lspconfig.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/plugins/lspconfig.lua b/lua/plugins/lspconfig.lua index 1005f08..a94c28c 100644 --- a/lua/plugins/lspconfig.lua +++ b/lua/plugins/lspconfig.lua @@ -29,5 +29,6 @@ return { filetypes = { "typescript", "javascript", "javascriptreact", "typescriptreact", "vue" }, }) lspconfig.volar.setup({}) + lspconfig.zig.setup({}) end } From fa788059487e1dcfd864a5a2937c09984a9af56e Mon Sep 17 00:00:00 2001 From: David Senoner Date: Fri, 18 Apr 2025 15:39:43 +0200 Subject: [PATCH 3/3] fixed 0.11 deprecations --- lua/plugins/colorscheme.lua | 2 +- lua/vim-options.lua | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua index 0af4ee2..edf62c5 100644 --- a/lua/plugins/colorscheme.lua +++ b/lua/plugins/colorscheme.lua @@ -10,6 +10,6 @@ return { theme = "dragon" }) - vim.cmd("colorscheme kanagawa") + vim.cmd("colorscheme kanagawa-dragon") end } diff --git a/lua/vim-options.lua b/lua/vim-options.lua index 7d83804..ebc0717 100644 --- a/lua/vim-options.lua +++ b/lua/vim-options.lua @@ -1,4 +1,3 @@ -vim.o.background = "" vim.cmd("set number") vim.cmd("set expandtab") vim.cmd("set tabstop=2")