1
0
Fork 0

nvim: don't use = in filenames

This commit is contained in:
Vladimír Dudr 2024-10-03 12:49:49 +02:00
parent b2f46e81cd
commit 6d77f83bf5

View file

@ -45,6 +45,13 @@ function M.setup()
vim.o.breakindentopt = 'shift:4'
vim.o.showbreak = ''
local isfname = {}
for _, ch in ipairs(vim.opt.isfname:get()) do
if ch ~= "=" then
table.insert(isfname, ch)
end
end
vim.opt.isfname = isfname
local function set_winopts()
vim.o.cursorline = true