diff options
author | Minijackson <minijackson@riseup.net> | 2024-09-25 21:46:10 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2024-09-25 21:46:10 +0200 |
commit | 6a5b07ce5f451045f203ec825ce497c5cb6c43b3 (patch) | |
tree | 710e6900e18f3c5f7898ec7282f03b413f5c2295 /common/nixvim.nix | |
parent | 77756aa48370fa346ec39bcaaf548890617e7887 (diff) | |
download | nixos-config-reborn-6a5b07ce5f451045f203ec825ce497c5cb6c43b3.tar.gz nixos-config-reborn-6a5b07ce5f451045f203ec825ce497c5cb6c43b3.zip |
common/nixvim: don't use most deprecated options
Diffstat (limited to 'common/nixvim.nix')
-rw-r--r-- | common/nixvim.nix | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/common/nixvim.nix b/common/nixvim.nix index b74e6d4..68a4905 100644 --- a/common/nixvim.nix +++ b/common/nixvim.nix | |||
@@ -380,13 +380,15 @@ in | |||
380 | 380 | ||
381 | lualine = { | 381 | lualine = { |
382 | enable = true; | 382 | enable = true; |
383 | iconsEnabled = false; | 383 | settings.options = { |
384 | component_separators.left = ""; | ||
385 | component_separators.right = ""; | ||
384 | 386 | ||
385 | componentSeparators.left = ""; | 387 | section_separators.left = ""; |
386 | componentSeparators.right = ""; | 388 | section_separators.right = ""; |
387 | 389 | ||
388 | sectionSeparators.left = ""; | 390 | icons_enabled = false; |
389 | sectionSeparators.right = ""; | 391 | }; |
390 | }; | 392 | }; |
391 | 393 | ||
392 | luasnip.enable = true; | 394 | luasnip.enable = true; |
@@ -588,6 +590,8 @@ in | |||
588 | enable = true; | 590 | enable = true; |
589 | treesitterIntegration.enable = true; | 591 | treesitterIntegration.enable = true; |
590 | }; | 592 | }; |
593 | |||
594 | web-devicons.enable = true; | ||
591 | }; | 595 | }; |
592 | 596 | ||
593 | extraConfigLua = '' | 597 | extraConfigLua = '' |