mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-12 17:18:22 -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,
|
|
}
|