diff --git a/nvim/.config/nvim/lua/keymaps.lua b/nvim/.config/nvim/lua/keymaps.lua index e797ca6..7f94380 100644 --- a/nvim/.config/nvim/lua/keymaps.lua +++ b/nvim/.config/nvim/lua/keymaps.lua @@ -28,10 +28,6 @@ vim.keymap.set("n", "cc", "lua vim.g.cmptoggle = not vim.g.cmptoggle", --toggle file browser vim.keymap.set("n", "f", "Telescope file_browser", { desc = "file browser" }) ---toggle terminal -vim.keymap.set({ "n", "t" }, "t", "ToggleTerm", { desc = "[T]erminal" }) - -vim.keymap.set("t", "jk", [[]]) --delete all buffers vim.keymap.set("n", "dab", ':%bdelete|edit #|normal`"', { desc = "delete all buffers" }) diff --git a/nvim/.config/nvim/lua/plugins/toggleterm.lua b/nvim/.config/nvim/lua/plugins/toggleterm.lua deleted file mode 100644 index 6f0edc0..0000000 --- a/nvim/.config/nvim/lua/plugins/toggleterm.lua +++ /dev/null @@ -1,27 +0,0 @@ -return { - { - "akinsho/toggleterm.nvim", - version = "*", - init = function() - require("toggleterm").setup({ - highlights = { - -- highlights which map to a highlight group name and a table of it's values - -- NOTE: this is only a subset of values, any group placed here will be set for the terminal window split - Normal = { - guibg = "#26233a", - }, - NormalFloat = { - link = "Normal", - }, - -- FloatBorder = { - -- guifg = "", - -- guibg = "", - -- }, - }, - shade_terminals = false, - }) - end, - opts = {--[[ things you want to change go here]] - }, - }, -}