Initial Ubuntu i3wm dotfiles

This commit is contained in:
2026-01-29 23:19:44 +05:30
commit 75a6027f67
40 changed files with 2261 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
return {
"akinsho/toggleterm.nvim",
version = "*",
config = function()
require("toggleterm").setup({
-- Open with Ctrl + `
open_mapping = [[<C-`>]],
-- Terminal behavior
start_in_insert = true,
insert_mappings = true,
terminal_mappings = true,
persist_size = true,
close_on_exit = true,
-- Visuals
hide_numbers = true,
shade_terminals = false, -- important for transparency
direction = "float",
float_opts = {
border = "rounded",
winblend = 0,
},
})
end,
}