fix(nvim): do not show statuscolumn in dashboard

This commit is contained in:
Price Hiller 2023-05-05 04:59:52 -05:00
parent 95620c45f4
commit 65b9cab1b9
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -171,6 +171,7 @@ vim.api.nvim_create_autocmd("FileType", {
1000,
vim.schedule_wrap(function()
pcall(vim.cmd, "AlphaRedraw")
vim.opt_local.statuscolumn = " "
end)
)