This commit is contained in:
antoine 2026-03-22 09:48:53 +01:00
commit 6eae514dab
Signed by: antoine
GPG key ID: 9EB6BAADC51B6133
15 changed files with 500 additions and 0 deletions

18
plugins/statusline.nix Normal file
View file

@ -0,0 +1,18 @@
{pkgs, ...}: {
vim.extraPlugins.lualine-nvim = {
package = pkgs.vimPlugins.lualine-nvim;
setup = ''
require("lualine").setup({
options = {
theme = "catppuccin",
globalstatus = true,
section_separators = {
left = string.char(0xEE, 0x82, 0xB4),
right = string.char(0xEE, 0x82, 0xB6),
},
component_separators = { left = "|", right = "|" },
},
})
'';
};
}