From 763b9e3340299185240ec45b9c9b67602ce994ec Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Wed, 19 Jun 2024 07:15:25 +0200 Subject: fix(modules/nvim): Update to the newest nixVim version This includes replacing the deprecated `lua = true` pattern with a raw lua value and using the new name for `nil_ls`: `nil-ls` --- .../home/conf/nvim/plgs/telescope/extensions/symbols/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'modules/home/conf/nvim/plgs/telescope/extensions/symbols') diff --git a/modules/home/conf/nvim/plgs/telescope/extensions/symbols/default.nix b/modules/home/conf/nvim/plgs/telescope/extensions/symbols/default.nix index fa166c02..05b4a4f2 100644 --- a/modules/home/conf/nvim/plgs/telescope/extensions/symbols/default.nix +++ b/modules/home/conf/nvim/plgs/telescope/extensions/symbols/default.nix @@ -8,33 +8,31 @@ { key = "il"; mode = "n"; - action = '' + action.__raw = '' function() require('telescope.builtin').symbols{ sources = { 'latex' }} end ''; - lua = true; options.desc = "[i]nsert a [l]atex symbol"; } { key = "ie"; mode = "n"; - action = '' + action.__raw = '' function() require('telescope.builtin').symbols{ sources = { 'emoji', }} end ''; - lua = true; options.desc = "[i]nsert a [e]moji"; } { key = "is"; mode = "n"; - action = '' + action.__raw = '' function() require('telescope.builtin').symbols{ sources = { 'emoji', @@ -47,7 +45,6 @@ }} end ''; - lua = true; options.desc = "[i]nsert a [s]ymbol (like emojis)"; } ]; -- cgit 1.4.1