feat(vim-plugins): Try to replace statusline plugin

Try, as an alternative, because vim-airline is not working properly with
the Lazy.nvim installation method, to switch plugins for the widely
adopted lualine.nvim plugin.
This commit is contained in:
Dionisio E Alonso 2024-04-15 09:20:16 -03:00
parent eab79886c5
commit a6085f751c
1 changed files with 10 additions and 2 deletions

View File

@ -14,8 +14,16 @@ vim.opt.rtp:prepend(lazypath)
local plugins = {
{ "navarasu/onedark.nvim", lazy = true },
"Mofiqul/vscode.nvim",
{ "vim-airline/vim-airline", event = "VeryLazy",
dir = vim.fn.stdpath("config") .. "/pack/misc/start/vim-airline" },
{
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
opts = {
options = { section_separators = "", component_separators = "" },
sections = {
lualine_a = { { "mode", fmt = function(str) return str:sub(1,1) end } },
},
},
},
"neovim/nvim-lspconfig",
{