aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager/soispha/config/neovim/nixvim/plugins/lualine
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-19 17:10:01 +0200
committerSoispha <soispha@vhack.eu>2023-08-19 17:36:04 +0200
commitde266305ddfcaec0e3477164b4d9bdf1a596a124 (patch)
tree0c24d98855fa602157ef84e50769aa23614ed23c /home-manager/soispha/config/neovim/nixvim/plugins/lualine
parentFix(hm/conf/nvim): Import neovim config (diff)
downloadnixos-config-de266305ddfcaec0e3477164b4d9bdf1a596a124.zip
Fix(hm/conf/neovim): Fully import nvim config through nixVim
Diffstat (limited to 'home-manager/soispha/config/neovim/nixvim/plugins/lualine')
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix48
1 files changed, 23 insertions, 25 deletions
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix
index 0ec255db..2c95b562 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix
@@ -46,29 +46,27 @@
'';
};
in {
- options = {
- icons_enabled = true;
- theme = "nightfox";
- component_separators = {
- left = "";
- right = "";
- };
- section_separators = {
- left = "";
- right = "";
- };
- disabled_filetypes = {
- statusline = [];
- winbar = [];
- };
- ignore_focus = {};
- always_divide_middle = true;
- globalstatus = false;
- refresh = {
- statusline = 1000;
- tabline = 1000;
- winbar = 1000;
- };
+ iconsEnabled = true;
+ theme = "nightfox";
+ componentSeparators = {
+ left = "";
+ right = "";
+ };
+ sectionSeparators = {
+ left = "";
+ right = "";
+ };
+ disabledFiletypes = {
+ statusline = [];
+ winbar = [];
+ };
+ ignoreFocus = {};
+ alwaysDivideMiddle = true;
+ globalstatus = false;
+ refresh = {
+ statusline = 1000;
+ tabline = 1000;
+ winbar = 1000;
};
sections = {
lualine_a = ["mode"];
@@ -85,7 +83,7 @@
lualine_y = ["encoding" "fileformat" get_mixed_indent get_trailing_whitespace];
lualine_z = [get_location_of_file];
};
- inactive_sections = {
+ inactiveSections = {
lualine_a = [];
lualine_b = [];
lualine_c = ["filename"];
@@ -95,7 +93,7 @@
};
tabline = {};
winbar = {};
- inactive_winbar = {};
+ inactiveWinbar = {};
# TODO add all installed and supported extensions here
extensions = ["fugitive"];