Skip to content

Commit

Permalink
fix: delete default nvim keymap gri
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangyinzuo committed Oct 19, 2024
1 parent 4542a9b commit e31c32c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
build
root/.config/lazygit/state.yml
root/.config/nvim/lazy-lock.json
root/.vim/.netrwhist
root/.vim/plugged
root/.vim/doc/tags
Expand Down
1 change: 1 addition & 0 deletions root/.config/nvim/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
init.vim
coc-settings.json
lazy-lock.json
3 changes: 2 additions & 1 deletion root/.config/nvim/lua/lsp/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ function M.lspconfig()
vim.keymap.del("n", "[d")
vim.keymap.del("n", "]D")
vim.keymap.del("n", "[D")
vim.keymap.del({"x", "n"}, "gra")
vim.keymap.del({ "x", "n" }, "gra")
vim.keymap.del("n", "gri")
vim.keymap.del("n", "grn")
vim.keymap.del("n", "grr")
end
Expand Down

0 comments on commit e31c32c

Please sign in to comment.