diff --git a/.config/nvim/lua/maps.lua b/.config/nvim/lua/maps.lua index e910e8dd..0c0e9d8e 100644 --- a/.config/nvim/lua/maps.lua +++ b/.config/nvim/lua/maps.lua @@ -7,12 +7,6 @@ map("t", "", "", {}) map("n", "ff", "Telescope find_files", { silent = true }) map("n", "fg", "Telescope live_grep", { silent = true }) --- neoterm.nvim -map("n", "tt", "NeotermToggle", { silent = true }) -map("n", "tr", ":NeotermRun", {}) -map("n", "te", "NeotermExit", { silent = true }) -map("n", "ta", "NeotermRerun", { silent = true }) - -- Quick cursor movement map("n", "", "5j", { noremap = true }) map("n", "", "5k", { noremap = true }) diff --git a/.config/nvim/lua/pluginconf/tterm.lua b/.config/nvim/lua/pluginconf/tterm.lua index f379f130..d84fdd19 100644 --- a/.config/nvim/lua/pluginconf/tterm.lua +++ b/.config/nvim/lua/pluginconf/tterm.lua @@ -2,6 +2,6 @@ local tterm = require "toggleterm" tterm.setup { size = 64, - open_mapping = [[tt]], + open_mapping = [[]], direction = "vertical", }