Skip to content

Commit

Permalink
Update .config/nvim/init.lua
Browse files Browse the repository at this point in the history
メンテされていないようなので変更した。オプションがうまく読み込まれていなかったが読み込まれるようになった。
pocco81/auto-save.nvim#76 (comment)
  • Loading branch information
kajirikajiri committed Dec 12, 2023
1 parent c1d35b2 commit a529757
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -374,10 +374,15 @@ require("lazy").setup({
}
},
{
"Pocco81/auto-save.nvim",
"okuuva/auto-save.nvim",
opts = {
trigger_events = { "FocusLost" }, -- BufLeaveもいるかも??
}
enabled = true,
trigger_events = { -- See :h events
immediate_save = { "BufLeave", "FocusLost" }, -- vim events that trigger an immediate save
defer_save = {}, -- { "InsertLeave", "TextChanged" } 元々は入力モードを抜けると保存されていたが、それだと追加の変更を行うつもりの時に困る。特に、GatsbyとかのHotReloadが有効になっていると、勝手に保存されて構文エラーで落ちる。非常に面倒であったため、無効にした。
cancel_defered_save = { "InsertEnter" }, -- vim events that cancel a pending deferred save
},
},
},
{
'smoka7/hop.nvim',
Expand Down

0 comments on commit a529757

Please sign in to comment.