Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TwIStOy committed Mar 2, 2024
1 parent 5885fb0 commit 94f22ac
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
21 changes: 14 additions & 7 deletions lua/dotvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ local function install_missing_dora()

if not vim.uv.fs_stat(dora_path) then
vim
.system({
"git",
"clone",
"https://github.com/TwIStOy/dora.nvim.git",
dora_path,
})
:wait()
.system({
"git",
"clone",
"https://github.com/TwIStOy/dora.nvim.git",
dora_path,
})
:wait()
end

vim.opt.rtp:prepend(dora_path)
Expand Down Expand Up @@ -60,6 +60,13 @@ function M.setup(opts)
table.insert(opts.packages, "dora.packages.extra.lang.swift")
end

opts.lazy = function(lazy_opts)
table.insert(
lazy_opts.performance.rtp.paths,
os.getenv("HOME") .. ".dotvim"
)
end

dora.setup(opts)

vim.cmd("colorscheme catppuccin")
Expand Down
2 changes: 1 addition & 1 deletion lua/ht/version.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local M = {}

M.last_updated_time = '2024.03.01'
M.last_updated_time = '2024.03.02'

return M

0 comments on commit 94f22ac

Please sign in to comment.