aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/config/keymaps.lua
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-09-08 11:34:38 +0200
committerThomas Schmucker <ts@its1.de>2026-09-08 11:34:38 +0200
commit40dd55d2fe0d927307ddf1b43b972fb53084e2be (patch)
treebd5ac4ae93a36be2b86cff4db4346b1c7f267ca6 /nvim/lua/config/keymaps.lua
parent9c76122ad53cd6b2846e7349a11729ee2dbaa435 (diff)
downloaddotfiles-40dd55d2fe0d927307ddf1b43b972fb53084e2be.tar.gz
dotfiles-40dd55d2fe0d927307ddf1b43b972fb53084e2be.tar.bz2
dotfiles-40dd55d2fe0d927307ddf1b43b972fb53084e2be.zip
Funktionsnamen für die Keymappings angepasst
Diffstat (limited to 'nvim/lua/config/keymaps.lua')
-rw-r--r--nvim/lua/config/keymaps.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/nvim/lua/config/keymaps.lua b/nvim/lua/config/keymaps.lua
index 9896a57..2088995 100644
--- a/nvim/lua/config/keymaps.lua
+++ b/nvim/lua/config/keymaps.lua
@@ -2,7 +2,7 @@ local M = {}
2 2
3local map = vim.keymap.set 3local map = vim.keymap.set
4 4
5function M.lsp(buffer, client) 5function M.set_lsp(buffer, client)
6 local opts = { 6 local opts = {
7 buffer = buffer, 7 buffer = buffer,
8 silent = true, 8 silent = true,
@@ -62,11 +62,11 @@ function M.lsp(buffer, client)
62 end 62 end
63end 63end
64 64
65function M.gitsigns() 65function M.set_gitsigns()
66 map("n", "<leader>tb", require("gitsigns").toggle_current_line_blame) 66 map("n", "<leader>tb", require("gitsigns").toggle_current_line_blame)
67end 67end
68 68
69function M.global() 69function M.set_global()
70 local opts = { 70 local opts = {
71 silent = true, 71 silent = true,
72 } 72 }