mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 19:30:01 +02:00
11 lines
127 B
Lua
11 lines
127 B
Lua
|
|
local M = {}
|
|
|
|
function M.delimiter()
|
|
if vim.fn.has('win32') then
|
|
return '\\'
|
|
end
|
|
return '/'
|
|
end
|
|
|
|
return M
|