Skip to content

Commit

Permalink
fix: disable some plugins that don't work with neovide (#237)
Browse files Browse the repository at this point in the history
fix(neovide): noice and mini.animate is not compatible with neovide
  • Loading branch information
luxus authored May 27, 2023
1 parent 32e14dd commit fe06ccf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lua/astrocommunity/scrolling/mini-animate/mini-animate.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
return {
"echasnovski/mini.animate",
event = "VeryLazy",
cond = not vim.g.neovide,
-- enabled = false,
opts = function()
-- don't use animate when scrolling with the mouse
Expand Down
1 change: 1 addition & 0 deletions lua/astrocommunity/utility/noice-nvim/noice-nvim.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ return {
{
"folke/noice.nvim",
event = "VeryLazy",
cond = not vim.g.neovide,
dependencies = { "MunifTanjim/nui.nvim" },
opts = {
lsp = {
Expand Down

0 comments on commit fe06ccf

Please sign in to comment.