Fterm and autopair plugin added
This commit is contained in:
@@ -178,6 +178,9 @@ keymap.set("n", "<leader>x", "<cmd>lua require'telescope.builtin'."..
|
|||||||
"get_dropdown({ previewer = false }))<cr>")
|
"get_dropdown({ previewer = false }))<cr>")
|
||||||
keymap.set("n", "<c-t>", "<cmd>Telescope live_grep<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>')
|
||||||
|
|
||||||
--
|
--
|
||||||
-- ------------------------------------------------------------------------------------------------
|
-- ------------------------------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -251,6 +251,21 @@ return packer.startup(function(use)
|
|||||||
'nvim-mini/mini.icons'
|
'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.
|
-- Automatically set up your configuration after cloning packer.nvim.
|
||||||
|
|||||||
Reference in New Issue
Block a user