Changed nvim statusline to lualine

This commit is contained in:
Luka Jankovic 2025-01-14 15:55:35 +01:00
parent fe13977dd8
commit 7257228dbb
2 changed files with 8 additions and 4 deletions

View file

@ -30,3 +30,6 @@ vim.opt.cursorline = true
-- Set signcolumn to prevent lsp flickering
vim.opt.signcolumn = "yes"
-- Always show tabline
vim.opt.laststatus = 2

View file

@ -1,6 +1,7 @@
return {
"sschleemilch/slimline.nvim",
opts = {
style = "fg",
},
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
config = function()
require("lualine").setup()
end,
}