From de266305ddfcaec0e3477164b4d9bdf1a596a124 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sat, 19 Aug 2023 17:10:01 +0200 Subject: Fix(hm/conf/neovim): Fully import nvim config through nixVim --- home-manager/soispha/config/neovim/nixvim/mappings/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'home-manager/soispha/config/neovim/nixvim/mappings') diff --git a/home-manager/soispha/config/neovim/nixvim/mappings/default.nix b/home-manager/soispha/config/neovim/nixvim/mappings/default.nix index 237319a0..575ad465 100644 --- a/home-manager/soispha/config/neovim/nixvim/mappings/default.nix +++ b/home-manager/soispha/config/neovim/nixvim/mappings/default.nix @@ -13,7 +13,7 @@ }; in { insert = - lib.recursiveUpate { + lib.recursiveUpdate { "hh" = { action = '' function() @@ -29,7 +29,7 @@ ''; desc = "completion trigger/ forward in completen menu"; }; - "" = { + "" = { action = '' function() local cmp = require('cmp'); @@ -78,6 +78,10 @@ desc = "jump to command line"; }; + "\\f" = { + action = "require('lf').start()"; + desc = "open lf in a floating window"; + }; # Splits "" = { -- cgit 1.4.1