Skip to content

Commit

Permalink
WORKAROUND: πŸ’© denops server stop bug πŸ’©
Browse files Browse the repository at this point in the history
  • Loading branch information
mimikun committed Jan 21, 2025
1 parent f3cc98d commit bee5344
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dot_config/nvim/lua/config/settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ settings.use_avante = check_avante()

---use denops
-- NOTE: only be enabled at Home-azusa and Home-WSL
settings.use_denops = (is_home and global.is_linux) and true or false
local use_denops = (is_home and global.is_linux) and true or false
-- HACK: deno has bug
use_denops = false
settings.use_denops = use_denops

---use blink.cmp
settings.use_blink_cmp = false
Expand Down

0 comments on commit bee5344

Please sign in to comment.