summary refs log tree commit diff
path: root/.vim/init.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.vim/init.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/.vim/init.lua b/.vim/init.lua
index eb0074c..9fc5bf9 100644
--- a/.vim/init.lua
+++ b/.vim/init.lua
@@ -61,7 +61,6 @@ opt.signcolumn = 'auto'
 opt.smartcase = true
 opt.spell = false
 opt.spelloptions = 'camel'
-opt.statusline = '%!luaeval("statusline()")'
 opt.termguicolors = true
 opt.textwidth = 0
 opt.timeoutlen = 400
@@ -299,6 +298,9 @@ function _G.statusline_lsp_diagnostics(bufnr)
 end
 -- }}}
 
+_G.statusline_enable_notifysend = false
+require('statusline')
+
 -- source .nvimrc if it exists
 local local_vimrc = vim.fn.getcwd()..'/.nvimrc'
 if vim.loop.fs_stat(local_vimrc) then