Start with hidden lualine
This commit is contained in:
parent
9d3b3cd662
commit
cdbbc90b3b
2
init.lua
2
init.lua
|
@ -11,6 +11,8 @@ if not vim.loop.fs_stat(lazypath) then
|
||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
|
vim.api.nvim_command('autocmd VimEnter * lua require("lualine").hide()')
|
||||||
|
|
||||||
|
|
||||||
require("lazy").setup("plugins")
|
require("lazy").setup("plugins")
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
-- Lualin
|
-- Lualine
|
||||||
local lualine_hidden = false
|
local lualine_hidden = true
|
||||||
|
|
||||||
function ToggleLualine()
|
function ToggleLualine()
|
||||||
if lualine_hidden then
|
if lualine_hidden then
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
require('lualine').hide()
|
||||||
require('lualine').setup {
|
require('lualine').setup {
|
||||||
options = {
|
options = {
|
||||||
-- icons_enabled = true,
|
-- icons_enabled = true,
|
||||||
|
|
Loading…
Reference in a new issue