nvim: don't use = in filenames
This commit is contained in:
parent
b2f46e81cd
commit
6d77f83bf5
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue