1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 11:24:55 +02:00
dotfiles/nvim/lua/utils/path.lua

11 lines
127 B
Lua

local M = {}
function M.delimiter()
if vim.fn.has('win32') then
return '\\'
end
return '/'
end
return M