summaryrefslogtreecommitdiffstats
path: root/nvf
diff options
context:
space:
mode:
authorSkullheadx <andrew.montgomery@warpengine.ai>2026-06-29 18:19:19 -0400
committerSkullheadx <andrew.montgomery@warpengine.ai>2026-06-29 18:19:19 -0400
commit3e9fcfcdb42c756ec1725fa429ea709f5dc677ed (patch)
tree0661cacb9387e53f68caf3761609c6c39f320450 /nvf
parentoptimize, split irc config and add ghostty config (diff)
downloadnixos-3e9fcfcdb42c756ec1725fa429ea709f5dc677ed.tar.gz
nixos-3e9fcfcdb42c756ec1725fa429ea709f5dc677ed.tar.bz2
nixos-3e9fcfcdb42c756ec1725fa429ea709f5dc677ed.zip
fix symbol picker
Diffstat (limited to 'nvf')
-rw-r--r--nvf/keymaps.nix4
-rw-r--r--nvf/nvf.nix5
2 files changed, 7 insertions, 2 deletions
diff --git a/nvf/keymaps.nix b/nvf/keymaps.nix
index a9bc375..dd46fe5 100644
--- a/nvf/keymaps.nix
+++ b/nvf/keymaps.nix
@@ -350,14 +350,14 @@
mode = "n";
silent = true;
desc = "LSP Symbols";
- action = "<cmd>lua Snacks.picker.lsp_symbols()<CR>";
+ action = "<cmd>lua Snacks.picker.lsp_symbols({ filter = { default = true } })<CR>";
}
{
key = "<leader>lS";
mode = "n";
silent = true;
desc = "LSP Workspace Symbols";
- action = "<cmd>lua Snacks.picker.lsp_workspace_symbols()<CR>";
+ action = "<cmd>lua Snacks.picker.lsp_workspace_symbols({ filter = { default = true } })<CR>";
}
# Other
diff --git a/nvf/nvf.nix b/nvf/nvf.nix
index 76365b9..30d7b2b 100644
--- a/nvf/nvf.nix
+++ b/nvf/nvf.nix
@@ -67,6 +67,11 @@
};
lspconfig.enable = true;
otter-nvim.enable = true;
+
+ mappings = {
+ signatureHelp = null;
+ listDocumentSymbols = null;
+ };
};
notes.todo-comments.enable = true;