From f6edd1e9fefc724034c9727f7a76d14c6cae263a Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Sat, 16 Nov 2024 12:08:10 +0200 Subject: [PATCH] Changed keychain to persist ssh keys from 10m to 3h, also removed duplicate undofile in nvim config thanks banana --- .config/nvim/lua/custom/config/options.lua | 1 - .zshrc | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.config/nvim/lua/custom/config/options.lua b/.config/nvim/lua/custom/config/options.lua index 2201793..7ec9cf2 100644 --- a/.config/nvim/lua/custom/config/options.lua +++ b/.config/nvim/lua/custom/config/options.lua @@ -33,7 +33,6 @@ vim.opt.smartcase = true vim.opt_local.wrap = false vim.opt.wrap = false vim.opt.scrolloff = 8 -vim.opt.undofile = true vim.opt.termguicolors = true vim.opt.laststatus = 3 -- views can only be fully collapsed with the global statusline vim.opt.splitkeep = 'screen' -- for edgy.nvim diff --git a/.zshrc b/.zshrc index d439867..e6d9c6b 100644 --- a/.zshrc +++ b/.zshrc @@ -127,5 +127,4 @@ esac # pnpm end # Start ssh-agent if not running -eval $(keychain --quiet --eval --timeout 10 ~/.ssh/id_ed25519) - +eval $(keychain --quiet --eval --timeout 180 ~/.ssh/id_ed25519)