diff options
Diffstat (limited to 'nvim/lua/config/keymaps.lua')
| -rw-r--r-- | nvim/lua/config/keymaps.lua | 6 |
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 | ||
| 3 | local map = vim.keymap.set | 3 | local map = vim.keymap.set |
| 4 | 4 | ||
| 5 | function M.lsp(buffer, client) | 5 | function 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 |
| 63 | end | 63 | end |
| 64 | 64 | ||
| 65 | function M.gitsigns() | 65 | function 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) |
| 67 | end | 67 | end |
| 68 | 68 | ||
| 69 | function M.global() | 69 | function M.set_global() |
| 70 | local opts = { | 70 | local opts = { |
| 71 | silent = true, | 71 | silent = true, |
| 72 | } | 72 | } |
