Updated prefs file

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-09-15 16:58:38 +02:00
parent 9d2c446a71
commit c41bb813fd
6 changed files with 27 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
local configDir = vim.fn.stdpath("config")
local prefs = configDir .. "/lua/taken/prefs.lua"
local example = configDir .. "/lua/taken/prefs.lua.example"
if vim.fn.filereadable(prefs) == 0 then
vim.cmd("silent! !cp " .. example .. " " .. prefs)
end