mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2025-01-07 05:54:01 -05:00
21 lines
508 B
Lua
21 lines
508 B
Lua
|
return require('zen-mode').setup {
|
||
|
window = {
|
||
|
options = {
|
||
|
signcolumn = 'no',
|
||
|
number = false,
|
||
|
relativenumber = false,
|
||
|
cursorline = false,
|
||
|
cursorcolumn = false,
|
||
|
foldcolumn = '0'
|
||
|
}
|
||
|
},
|
||
|
on_open = function(win)
|
||
|
vim.cmd('TSContextDisable')
|
||
|
vim.cmd('IndentBlanklineDisable')
|
||
|
end,
|
||
|
on_close = function()
|
||
|
vim.cmd('TSContextEnable')
|
||
|
-- vim.cmd('IndentBlanklineEnable')
|
||
|
end,
|
||
|
}
|