diff options
author | sefidel <contact@sefidel.net> | 2022-02-28 00:45:18 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-02-28 00:45:24 +0900 |
commit | 1f44d163e8132e6a9647b2ed6aedbe1671061bb2 (patch) | |
tree | 0f10bf2a6aab90844e13362becaa85467806375d | |
parent | ce8fcff801841578b580ba01d9393e5fa1f8157c (diff) | |
download | nvimrc-1f44d163e8132e6a9647b2ed6aedbe1671061bb2.tar.gz nvimrc-1f44d163e8132e6a9647b2ed6aedbe1671061bb2.zip |
feat(ui): set inactive statusline to blank
-rw-r--r-- | fnl/nvrc/ui/statusline.fnl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/nvrc/ui/statusline.fnl b/fnl/nvrc/ui/statusline.fnl index 6db7927..9c6d04c 100644 --- a/fnl/nvrc/ui/statusline.fnl +++ b/fnl/nvrc/ui/statusline.fnl @@ -25,4 +25,4 @@ (ag! ui-statusline (au! [WinEnter BufEnter] * #(setl! statusline "%!v:lua.statusline.enable()")) - (au! [WinLeave BufLeave] * #(setl! statusline ""))) + (au! [WinLeave BufLeave] * #(setl! statusline " "))) |