From 590600ac7ff324f4fd4e090c63e898a13d5801a9 Mon Sep 17 00:00:00 2001 From: Hendrik Brinkmann Date: Tue, 13 May 2025 13:12:08 +0200 Subject: [PATCH] plugin: add toggleterm --- init.lua | 2 +- lua/custom/plugins/toggleterm.lua | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 lua/custom/plugins/toggleterm.lua diff --git a/init.lua b/init.lua index 6e43cca7..bf31a603 100644 --- a/init.lua +++ b/init.lua @@ -976,7 +976,7 @@ require('lazy').setup({ -- This is the easiest way to modularize your config. -- -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. - -- { import = 'custom.plugins' }, + { import = 'custom.plugins' }, -- -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec` -- Or use telescope! diff --git a/lua/custom/plugins/toggleterm.lua b/lua/custom/plugins/toggleterm.lua new file mode 100644 index 00000000..d20270a6 --- /dev/null +++ b/lua/custom/plugins/toggleterm.lua @@ -0,0 +1,9 @@ +return { + { + 'akinsho/toggleterm.nvim', + version = '*', + config = function() + require('toggleterm').setup() + end, + }, +}