Yuan Chiu 7594bbc120 feat nvim: 建立lspconfig整體架構
已參考mason, lspconfig, cmp官方範例,並反覆問GPT並手動對照後,已手動融合設定
2025-05-05 19:31:44 +08:00

9 lines
315 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

vim.g.suda_smart_edit = 1
require("config.options")
require("config.keymaps_nvim")
require("config.keymaps")
require("config.gui")
require("config.lazy") -- 初始化 Lazy.nvim
require("lsp") -- LSP 與 cmp 設定
require("config.terminal") -- 因為會被lazy.nvim override所以要放在最後