disable sshfs

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-10-27 22:20:45 -05:00
parent 5d2bc9abb8
commit 26dd42aebb
6 changed files with 7 additions and 74 deletions

View file

@ -1,14 +1,5 @@
return {
"lnc3l0t/glow.nvim",
init = function()
-- Check if glow is available
if not U.cmd_executable("glow") then
vim.notify(
"'glow' not found on PATH. Required for markdown preview with :Glow",
vim.log.levels.INFO
)
end
end,
opts = {
default_type = "keep",
},
@ -20,6 +11,7 @@ return {
"'glow' not found on PATH. Install it to use markdown preview.",
vim.log.levels.ERROR
)
return
end
require("glow").setup(opts)
end,