mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-09 14:45:58 +01:00
refactor: move lualine files into their own dir
This commit is contained in:
parent
645c50a610
commit
e738e44c6a
6 changed files with 95 additions and 3 deletions
|
@ -5,7 +5,6 @@
|
|||
...
|
||||
}: {
|
||||
imports = [
|
||||
./lualine.nix
|
||||
./config.nix
|
||||
./lualine
|
||||
];
|
||||
}
|
||||
|
|
87
modules/statusline/lualine/config.nix.old
Normal file
87
modules/statusline/lualine/config.nix.old
Normal file
|
@ -0,0 +1,87 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; {
|
||||
config = {
|
||||
vim.statusline.lualine = {
|
||||
enable = mkDefault false;
|
||||
icons = mkDefault true;
|
||||
theme = mkDefault "auto";
|
||||
sectionSeparator = {
|
||||
left = mkDefault "";
|
||||
right = mkDefault "";
|
||||
};
|
||||
|
||||
componentSeparator = {
|
||||
left = mkDefault "⏽";
|
||||
right = mkDefault "⏽";
|
||||
};
|
||||
|
||||
activeSection = {
|
||||
a = mkDefault "{'mode'}";
|
||||
b = mkDefault ''
|
||||
{
|
||||
{
|
||||
"filename",
|
||||
color = {bg='none'}
|
||||
},
|
||||
}
|
||||
'';
|
||||
c = mkDefault ''
|
||||
{
|
||||
{
|
||||
"branch",
|
||||
icon = ''
|
||||
},
|
||||
}
|
||||
'';
|
||||
x = mkDefault ''
|
||||
{
|
||||
{
|
||||
"diagnostics",
|
||||
sources = {'nvim_lsp'},
|
||||
separator = '',
|
||||
symbols = {error = '', warn = '', info = '', hint = ''}
|
||||
},
|
||||
}
|
||||
'';
|
||||
y = mkDefault ''
|
||||
{
|
||||
{
|
||||
"fileformat",
|
||||
color = {bg='none'}
|
||||
},
|
||||
},
|
||||
'';
|
||||
z = mkDefault ''
|
||||
{
|
||||
{
|
||||
"progress",
|
||||
color = {bg='none'}
|
||||
},
|
||||
"location",
|
||||
{
|
||||
"filetype",
|
||||
color = {
|
||||
bg='none',
|
||||
fg='lavender'
|
||||
},
|
||||
},
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
||||
inactiveSection = {
|
||||
a = mkDefault "{}";
|
||||
b = mkDefault "{}";
|
||||
c = mkDefault "{'filename'}";
|
||||
x = mkDefault "{'location'}";
|
||||
y = mkDefault "{}";
|
||||
z = mkDefault "{}";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
6
modules/statusline/lualine/default.nix
Normal file
6
modules/statusline/lualine/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
_: {
|
||||
imports = [
|
||||
./lualine.nix
|
||||
./config.nix
|
||||
];
|
||||
}
|
|
@ -7,7 +7,7 @@
|
|||
with lib;
|
||||
with builtins; let
|
||||
cfg = config.vim.statusline.lualine;
|
||||
supported_themes = import ./supported_lualine_themes.nix;
|
||||
supported_themes = import ./supported_themes.nix;
|
||||
in {
|
||||
options.vim.statusline.lualine = {
|
||||
enable = mkOption {
|
Loading…
Reference in a new issue