fix(core): vim links for the vim config links
This commit is contained in:
parent
1dfe088757
commit
9abfaf54ce
2 changed files with 5 additions and 5 deletions
|
|
@ -21,7 +21,7 @@ for _, dir in ipairs(dirs_to_link) do
|
|||
local dir_to_link = nvim_dir .. "/" .. dir
|
||||
if not configz.is_directory(dir_to_link) then
|
||||
configz.link(dir_to_link, {
|
||||
source = os.getenv "PWD" .. "/site-modules/core/files/vim/" .. dir_to_link,
|
||||
source = os.getenv "PWD" .. "/site-modules/core/files/vim/" .. dir,
|
||||
})
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -15,25 +15,25 @@ configz.directory(zsh_dir .. "/custom/plugins")
|
|||
|
||||
if not configz.is_directory(zsh_dir .. "/custom/custom") then
|
||||
configz.link(zsh_dir .. "/custom/custom", {
|
||||
source = os.getenv "PWD" .. "/site-modules/core/oh-my-zsh/custom",
|
||||
source = os.getenv "PWD" .. "/site-modules/core/files/oh-my-zsh/custom",
|
||||
})
|
||||
end
|
||||
|
||||
if not configz.is_directory(zsh_dir .. "/custom/lib") then
|
||||
configz.link(zsh_dir .. "/custom/lib", {
|
||||
source = os.getenv "PWD" .. "/site-modules/core/oh-my-zsh/lib",
|
||||
source = os.getenv "PWD" .. "/site-modules/core/files/oh-my-zsh/lib",
|
||||
})
|
||||
end
|
||||
|
||||
if not configz.is_file(zsh_dir .. "/custom/custom.zsh") then
|
||||
configz.link(zsh_dir .. "/custom/custom.zsh", {
|
||||
source = os.getenv "PWD" .. "/site-modules/core/oh-my-zsh/custom.zsh",
|
||||
source = os.getenv "PWD" .. "/site-modules/core/files/oh-my-zsh/custom.zsh",
|
||||
})
|
||||
end
|
||||
|
||||
if not configz.is_directory(zsh_dir .. "/custom/plugins/notmuch") then
|
||||
configz.link(zsh_dir .. "/custom/plugins/notmuch", {
|
||||
source = os.getenv "PWD" .. "/site-modules/core/oh-my-zsh/plugins/notmuch",
|
||||
source = os.getenv "PWD" .. "/site-modules/core/files/oh-my-zsh/plugins/notmuch",
|
||||
})
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue