Skip to content

Commit

Permalink
fix: use init for vim plugins config.
Browse files Browse the repository at this point in the history
Signed-off-by: ayamir <lgt986452565@gmail.com>
  • Loading branch information
ayamir committed Apr 8, 2024
1 parent f16aa25 commit dfb5c18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/modules/plugins/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ editor["romainl/vim-cool"] = {
editor["lambdalisue/suda.vim"] = {
lazy = true,
cmd = { "SudaRead", "SudaWrite" },
config = require("editor.suda"),
init = require("editor.suda"),
}
editor["tpope/vim-sleuth"] = {
lazy = true,
Expand Down
2 changes: 1 addition & 1 deletion lua/modules/plugins/lang.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lang["fatih/vim-go"] = {
lazy = true,
ft = "go",
build = ":GoInstallBinaries",
config = require("lang.vim-go"),
init = require("lang.vim-go"),
}
lang["mrcjkb/rustaceanvim"] = {
lazy = true,
Expand Down

0 comments on commit dfb5c18

Please sign in to comment.