From 6a5b07ce5f451045f203ec825ce497c5cb6c43b3 Mon Sep 17 00:00:00 2001 From: Minijackson Date: Wed, 25 Sep 2024 21:46:10 +0200 Subject: common/nixvim: don't use most deprecated options --- common/nixvim.nix | 14 +++++++++----- 1 file 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 lualine = { enable = true; - iconsEnabled = false; + settings.options = { + component_separators.left = ""; + component_separators.right = ""; - componentSeparators.left = ""; - componentSeparators.right = ""; + section_separators.left = ""; + section_separators.right = ""; - sectionSeparators.left = ""; - sectionSeparators.right = ""; + icons_enabled = false; + }; }; luasnip.enable = true; @@ -588,6 +590,8 @@ in enable = true; treesitterIntegration.enable = true; }; + + web-devicons.enable = true; }; extraConfigLua = '' -- cgit v1.2.3