From f087afaae4b339a8c6e7d6c6824f867d92a6dff8 Mon Sep 17 00:00:00 2001 From: minco Date: Thu, 7 May 2026 20:40:33 +0900 Subject: [PATCH] update lspconfig --- init.lua | 2 +- lua/plugins/lspconfig.lua | 15 --------------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/init.lua b/init.lua index e3ab76d..4de8c16 100644 --- a/init.lua +++ b/init.lua @@ -4,7 +4,7 @@ vim.cmd("colorscheme pop-punk") vim.opt.tabstop = 4 vim.opt.shiftwidth = 4 vim.opt.expandtab = true -vim.opt.messagesopt = "wait:30,history:500" +--vim.opt.messagesopt = "wait:30,history:500" vim.cmd("set relativenumber") vim.cmd("set number") vim.cmd("set cursorline") diff --git a/lua/plugins/lspconfig.lua b/lua/plugins/lspconfig.lua index d11c413..47878d5 100644 --- a/lua/plugins/lspconfig.lua +++ b/lua/plugins/lspconfig.lua @@ -26,21 +26,6 @@ return { cmd = { vim.fn.stdpath("config") .. "/shell/clangd-direnv.sh" } }) - vim.lsp.config("rust_analyzer", { - capabilities = capabilities, - settings = { - ["rust-analyzer"] = { - workspace = { - symbol = { - search = { - kind = "all_symbols", - } - } - } - } - } - }) - vim.lsp.enable("hls") end, }