mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
14 lines
278 B
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
|