init.lua/lua/plugins/lualine.lua

25 lines
472 B
Lua
Raw Normal View History

2024-02-10 22:51:14 +05:30
local Plugin = { "nvim-lualine/lualine.nvim" }
Plugin.dependencies = { "nvim-tree/nvim-web-devicons" }
Plugin.event = "VeryLazy"
function Plugin.init()
vim.opt.showmode = false
end
-- See :help lualine.txt
Plugin.opts = {
options = {
theme = "dracula-nvim",
2024-06-10 00:59:15 +05:30
globalstatus = true,
2024-02-10 22:51:14 +05:30
icons_enabled = true,
component_separators = "|",
section_separators = "",
disabled_filetypes = {
2024-06-10 00:58:42 +05:30
statusline = { "neo-tree" },
2024-02-10 22:51:14 +05:30
},
},
}
return Plugin