refactor nvim: mv config/swap.lua tools/swap.lua

This commit is contained in:
Yuan Chiu 2025-05-06 12:25:11 +08:00
parent 75aeb8c5f5
commit 8089b4d42d
2 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ vim.api.nvim_set_option("clipboard", "unnamedplus") -- 使用系統剪貼簿W
vim.opt.confirm = true -- 操作過程有衝突時,以明確的文字來詢問
vim.opt.history = 10000 -- 設定命令歷史記錄數量為 10000
-- vim.opt.directory = "." -- 將暫存檔存放在當前資料夾中
-- require("config.swap") -- 將暫存檔存放置位置另外做邏輯
-- require("tools.swap") -- 將暫存檔存放置位置另外做邏輯
vim.opt.mouse = "a" -- 啟用滑鼠支援
-- 編碼設定