fixed lualine

This commit is contained in:
fwastring 2026-03-30 13:18:57 +02:00
parent 36ade9a42d
commit d2985c8461

View file

@ -37,7 +37,7 @@ with lib;
telescope = true;
treesitter = true;
cmp = true;
lualine = true;
lualine = { };
};
};
};
@ -56,10 +56,6 @@ with lib;
};
clipboard.register = "unnamedplus";
extraPlugins = with pkgs.vimPlugins; [
plenary-nvim
];
globals.mapleader = " ";
keymaps = [
@ -240,7 +236,9 @@ with lib;
lualine = {
enable = true;
settings = {
options.theme = "catppuccin";
options.theme = {
__raw = "(function() local ok, cp = pcall(require, 'catppuccin.utils.lualine'); return ok and cp() or 'auto' end)()";
};
tabline = {
lualine_a = [ ];
lualine_b = [ ];
@ -305,7 +303,25 @@ with lib;
lazygit.enable = true;
telescope.enable = true;
telescope = {
enable = true;
settings = {
defaults = {
vimgrep_arguments = [
"rg"
"--color=never"
"--no-heading"
"--with-filename"
"--line-number"
"--column"
"--smart-case"
"--hidden"
"--glob"
"!.git/*"
];
};
};
};
luasnip.enable = true;
cmp = {