1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00
dotfiles/nvim/lua/user/utils/whitespace.lua

14 lines
278 B
Lua

local M = {}
function M.Toggle()
local indent = require "user.utils.indent_guidelines"
if vim.opt.list._value then
vim.opt.list = false
indent.show(user.indentGuides)
else
vim.opt.list = true
indent.show(false)
end
end
return M