aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager/soispha
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-25 23:09:05 +0200
committerSoispha <soispha@vhack.eu>2023-08-25 23:09:52 +0200
commit3d37c38f99360640135e79c65ab6f6b249b81b59 (patch)
treedb4c7fbca58b025ea7ac0e7752c227944e717a4f /home-manager/soispha
parentFix(hm/conf/neovim/plugins): Import new ones (diff)
downloadnixos-config-3d37c38f99360640135e79c65ab6f6b249b81b59.zip
Style(hm/conf/neovim): Format
Diffstat (limited to 'home-manager/soispha')
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/telescope/defaults/default.nix1
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/fzy-native/default.nix2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/telescope/keymaps/default.nix5
3 files changed, 5 insertions, 3 deletions
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/defaults/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/defaults/default.nix
index e8dffca8..1d88aad8 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/defaults/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/defaults/default.nix
@@ -26,6 +26,5 @@
}
// insert_and_normal_mappings;
};
-
};
}
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/fzy-native/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/fzy-native/default.nix
index 9653177c..ce0bdccc 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/fzy-native/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/fzy-native/default.nix
@@ -1,5 +1,5 @@
{...}: {
programs.nixvim.plugins.telescope.extensions.fzy-native = {
- enable = true;
+ enable = true;
};
}
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/keymaps/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/keymaps/default.nix
index a0ffdd5e..f967a739 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/keymaps/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/keymaps/default.nix
@@ -1,6 +1,9 @@
{...}: {
programs.nixvim.plugins.telescope.keymaps = {
- # TODO add diagnostics and workspace symbols here
+ "<space>rg" = {
+ action = "live_grep";
+ desc = "[rg] in a live session";
+ };
"<space>gd" = {
action = "lsp_definitions";
desc = "[G]oto [D]efinition (Telescope)";