From 323ebf42b2945e342f443029150c5b754d41504b Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Wed, 4 Feb 2026 14:29:01 +0100 Subject: [PATCH] unmasked treesitter keybind. --- flake.lock | 12 ++++++------ lua/myLuaConf/LSPs/init.lua | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index 2d69667..6905646 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixCats": { "locked": { - "lastModified": 1767159145, - "narHash": "sha256-rnx/0p6D7rKd7mjtgsdSZjpkutJMzUaVyo2mj0rmjWQ=", + "lastModified": 1769578476, + "narHash": "sha256-4+KbiBcC6hQ3sh0UbPXjy6TOfLh9yhskRlfPzyZ2FH4=", "owner": "BirdeeHub", "repo": "nixCats-nvim", - "rev": "479ab18fbeabaf87564d3fb0eaf99ebebb05f2f8", + "rev": "48f8be4bdafccfa19ceaaf08071a15eca36fdb1d", "type": "github" }, "original": { @@ -17,11 +17,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1767364772, - "narHash": "sha256-fFUnEYMla8b7UKjijLnMe+oVFOz6HjijGGNS1l7dYaQ=", + "lastModified": 1770141374, + "narHash": "sha256-yD4K/vRHPwXbJf5CK3JkptBA6nFWUKNX/jlFp2eKEQc=", "owner": "nixos", "repo": "nixpkgs", - "rev": "16c7794d0a28b5a37904d55bcca36003b9109aaa", + "rev": "41965737c1797c1d83cfb0b644ed0840a6220bd1", "type": "github" }, "original": { diff --git a/lua/myLuaConf/LSPs/init.lua b/lua/myLuaConf/LSPs/init.lua index 6291662..96f7e50 100644 --- a/lua/myLuaConf/LSPs/init.lua +++ b/lua/myLuaConf/LSPs/init.lua @@ -12,7 +12,7 @@ vim.keymap.set("n", "ls", Snacks.picker.lsp_symbols, { desc = "Document vim.keymap.set("n", "lws", Snacks.picker.lsp_workspace_symbols, { desc = "[W]orkspace [S]ymbols" }) vim.keymap.set("n", "lD", vim.lsp.buf.declaration, { desc = "Goto [D]eclaration" }) -vim.keymap.set("n", "lD", vim.lsp.buf.type_definition, { desc = "Type [D]efinition" }) +vim.keymap.set("n", "lt", vim.lsp.buf.type_definition, { desc = "Type [D]efinition" }) vim.keymap.set({"n", "v",}, "la", vim.lsp.buf.code_action, { desc = "[C]ode Action" }) vim.keymap.set("n", "ld", vim.lsp.buf.definition, { desc = "Goto [D]efinition" }) vim.keymap.set("n", "lf", vim.lsp.buf.format, { desc = "Format buffer" })