diff options
author | max397574 <[email protected]> | 2021-11-06 12:17:48 +0100 |
---|---|---|
committer | max397574 <[email protected]> | 2021-11-06 12:17:48 +0100 |
commit | c4d9bb17d9f8b0bec9d30e4692e46dd5ef5df0ae (patch) | |
tree | 96f3335599719f911424832ef3612081a44e80b6 /after/plugin | |
parent | e3676858b9c722efec478266893f146c830407f2 (diff) |
feat(startup): ✨added option to disable statuslines
Diffstat (limited to 'after/plugin')
-rw-r--r-- | after/plugin/startup.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/after/plugin/startup.lua b/after/plugin/startup.lua new file mode 100644 index 0000000..82e1f0d --- /dev/null +++ b/after/plugin/startup.lua @@ -0,0 +1,5 @@ +vim.defer_fn(function() + if vim.bo.ft == "startup" then + require"startup.utils".set_buf_options() + end +end,1) |