diff --git a/lua/plugins/neogit.lua b/lua/plugins/neogit.lua index 257bbb8..0513d5d 100644 --- a/lua/plugins/neogit.lua +++ b/lua/plugins/neogit.lua @@ -5,12 +5,7 @@ return { "sindrets/diffview.nvim", }, cmd = "Neogit", - init = function() - vim.keymap.set("n", "gg", "Neogit") - vim.keymap.set("n", "cc", "Neogit commit") - vim.keymap.set("n", "gp", "Neogit pull") - vim.keymap.set("n", "gP", "Neogit push") - end, + init = function() vim.keymap.set("n", "g", "Neogit") end, config = true, opts = { disable_commit_confirmation = true, diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 1635b5a..b3cc1f0 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -17,8 +17,6 @@ return { require("nvim-treesitter.configs").setup(opts) end, opts = { - ensure_installed = "all", - auto_install = true, highlight = { enable = true, disable = { "fortran" },