-
Hello, I'm looking to globally disable git-delta for everything - is that possible? The main reason is that I work on both Linux and Windows, and I've noticed that external processes on Windows, especially in Neovim/PowerShell, tends to be quite slow. I'm thinking of handling this conditionally by OS detection later. I actually have bat & git-delta installed and I am using them in terminal (so they exist in my path), but I don't want to use them in fzf-lua (for the reasons mentioned above). Hope this makes sense. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
require'fzf-lua'.setup({
defaults = { preview_pager = false },
-- rest of your settings
})
That happens already by default unless there is no builtin previewer available (for example, git commits, etc).
Totally understand, opening new processes on Windows isn’t efficient at the OS level, funny enough running WSL on a windows machine is faster than native, if you can do that I highly recommend it. |
Beta Was this translation helpful? Give feedback.
That happens already by default unless there is no builtin previewer available (for example, git commits, etc).
Totally understand, opening new processes on Windows i…