Added terminal toggler

This commit is contained in:
2024-08-17 15:02:08 +04:00
parent 59131c8aac
commit b8eac70b3d
5 changed files with 29 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ return {
local lint_augroup = vim.api.nvim_create_augroup("lint", { clear = true })
vim.api.nvim_create_autocmd({ "BufEnter", "BufWritePost", "InsertLeave" }, {
vim.api.nvim_create_autocmd({ "BufEnter", "BufWritePost", "InsertLeave", "TextChanged" }, {
group = lint_augroup,
callback = function()
lint.try_lint()

3
lua/plugins/surround.lua Normal file
View File

@@ -0,0 +1,3 @@
return {
"tpope/vim-surround",
}

View File

@@ -4,8 +4,8 @@ return {
dependencies = { "nvim-lua/plenary.nvim" },
lazy = false,
config = function()
require("telescope").setup({}) -- Define key mappings here to ensure they are set after the plugin is loaded
require("telescope").setup({})
vim.api.nvim_set_keymap("n", "<leader><C-f>", "<Cmd>Telescope live_grep<CR>", { noremap = true, silent = true })
end,
keys = "<leader><C-f>", -- Optionally specify here to load the plugin on this keypress
keys = "<leader><C-f>",
}

22
lua/plugins/terminal.lua Normal file
View File

@@ -0,0 +1,22 @@
return {
"akinsho/toggleterm.nvim",
version = "v2.12.0",
config = function()
require("toggleterm").setup({
open_mapping = [[<c-\>]],
direction = "vertical",
size = vim.o.columns * 0.4,
})
local opts = { buffer = 0 }
vim.keymap.set("t", "<esc>", [[<C-\><C-n>]], opts)
vim.keymap.set("t", "jk", [[<C-\><C-n>]], opts)
vim.keymap.set("t", "<C-h>", [[<Cmd>wincmd h<CR>]], opts)
vim.keymap.set("t", "<C-j>", [[<Cmd>wincmd j<CR>]], opts)
vim.keymap.set("t", "<C-k>", [[<Cmd>wincmd k<CR>]], opts)
vim.keymap.set("t", "<C-l>", [[<Cmd>wincmd l<CR>]], opts)
vim.keymap.set("t", "<C-w>", [[<C-\><C-n><C-w>]], opts)
end,
keys = [[<c-\>]],
}

View File

@@ -1,6 +1,7 @@
local langs = {
"javascript",
"typescript",
"tsx",
"python",
"go",
"html",
@@ -8,7 +9,6 @@ local langs = {
"scss",
"json",
"php",
"tsx",
"sql",
"lua",
"vim",