diff options
| author | Robert Günzler <r@gnzler.io> | 2022-08-17 15:24:53 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-08-17 15:24:53 +0200 |
| commit | c065216cab123898d46a4dae2ddeac6ca9abc5c0 (patch) | |
| tree | 4930c8ce5da7bd790868a376d9249c6982013da6 /.vim/lua/statusline.lua | |
| parent | b150114625fc48d08bf54d1c7cced09c6bbeec37 (diff) | |
vim: drop wk_register global usage
Diffstat (limited to '')
| -rw-r--r-- | .vim/lua/statusline.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.vim/lua/statusline.lua b/.vim/lua/statusline.lua index 7cd36b1..c0c185d 100644 --- a/.vim/lua/statusline.lua +++ b/.vim/lua/statusline.lua @@ -240,8 +240,7 @@ vim.keymap.set('n', '<leader>n', function() -- end, -- }, }):find() -end) -wk_register { ['<leader>n'] = {'notifications'} } +end, {desc='notifications'}) -- vim.opt.statusline = '%!luaeval("statusline()")' vim.opt.statusline = '%{%v:lua.statusline()%}' |