Fterm and autopair plugin added

This commit is contained in:
2026-07-15 19:14:48 +02:00
parent bf9ca21814
commit 9ffe43cc81
2 changed files with 18 additions and 0 deletions
+3
View File
@@ -178,6 +178,9 @@ keymap.set("n", "<leader>x", "<cmd>lua require'telescope.builtin'."..
"get_dropdown({ previewer = false }))<cr>")
keymap.set("n", "<c-t>", "<cmd>Telescope live_grep<cr>")
-- Example keybindings
keymap.set('n', '<A-t>', '<CMD>lua require("FTerm").toggle()<CR>')
keymap.set('t', '<A-t>', '<C-\\><C-n><CMD>lua require("FTerm").toggle()<CR>')
--
-- ------------------------------------------------------------------------------------------------
+15
View File
@@ -251,6 +251,21 @@ return packer.startup(function(use)
'nvim-mini/mini.icons'
}
-- ------------------------------------------------------------------------------------------------
-- nvim-autopairs - 2026-07-15
-- ------------------------------------------------------------------------------------------------
use {
"windwp/nvim-autopairs",
event = "InsertEnter",
config = function()
require("nvim-autopairs").setup {}
end
}
-- ------------------------------------------------------------------------------------------------
-- Float Terminal
-- ------------------------------------------------------------------------------------------------
use "numToStr/FTerm.nvim"
-- --------------------------------------------------------------------------------------------
-- Automatically set up your configuration after cloning packer.nvim.