reduce cmd time

This commit is contained in:
2025-12-01 13:07:15 +09:00
parent 185887d20d
commit cf16908e4f
2 changed files with 2 additions and 1 deletions

View File

@@ -4,6 +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.cmd("set relativenumber")
vim.cmd("set number")
vim.cmd("set cursorline")

View File

@@ -21,7 +21,7 @@ return {
local capabilities = require('blink.cmp').get_lsp_capabilities()
vim.lsp.config("ts_ls", {
vim.lsp.config("clangd", {
capabilities = capabilities,
cmd = { vim.fn.stdpath("config") .. "/shell/clangd-direnv.sh" }
})