mirror of
https://github.com/ForeverPyrite/dotfiles.git
synced 2025-12-10 01:08:06 +00:00
Ngl, I didn't realize I accidently pushed a version of the nvim folder that still had the LazyGit git repo, so it was pushed as a submodule. I was getting annoyed at the inconsistency between my devices and was trying to figure out the issue, finally looked at the Git repo on Gitea and realized that lol. So I went ahead and cleaned config, and now we should be good. Nvim config is in the best state it has even been in.
13 lines
328 B
Lua
13 lines
328 B
Lua
return {
|
|
-- This is the Lualine plugin. LazyVim usually enables it with `LazyVim.extras.ui.lualine`.
|
|
-- We're just providing `opts` here to override the theme.
|
|
{
|
|
"nvim-lualine/lualine.nvim",
|
|
opts = {
|
|
options = {
|
|
theme = "catppuccin", -- Set Lualine to use the catppuccin theme
|
|
},
|
|
},
|
|
},
|
|
}
|