diff --git a/git/config b/git/config index cadfd35..f563825 100644 --- a/git/config +++ b/git/config @@ -5,6 +5,9 @@ email = hadeedji@gmail.com name = Hadeed Ahmad +[push] + autoSetupRemote = true + [alias] s = status -u a = add diff --git a/nvim/lua/plugins/toggleterm.lua b/nvim/lua/plugins/toggleterm.lua index 3d61f7a..f7c20e7 100644 --- a/nvim/lua/plugins/toggleterm.lua +++ b/nvim/lua/plugins/toggleterm.lua @@ -2,13 +2,6 @@ return { "akinsho/toggleterm.nvim", opts = { open_mapping = "", - direction = "float", - size = function(term) - if term.direction == "vertical" then - return 80 - else - return 12 - end - end + direction = "float" } }