diff --git a/CHANGELOG.md b/CHANGELOG.md index e5c4dd3..50b7db1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.6] - 2020-10-28 +### Fixed +- Small changes for delta, aliases, lazygit. +- Update alacritty config for new version. +- Update lf configs for new version. + ## [0.7.5] - 2020-06-12 ### Fixed - Fixed Vim hiding style characters in markdown files. @@ -118,7 +124,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created basic script for proof of concept. -[Unreleased]: https://github.com/adamtabrams/fig/compare/0.7.5...HEAD +[Unreleased]: https://github.com/adamtabrams/fig/compare/0.7.6...HEAD +[0.7.6]: https://github.com/adamtabrams/fig/compare/0.7.5...0.7.6 [0.7.5]: https://github.com/adamtabrams/fig/compare/0.7.4...0.7.5 [0.7.4]: https://github.com/adamtabrams/fig/compare/0.7.3...0.7.4 [0.7.3]: https://github.com/adamtabrams/fig/compare/0.7.2...0.7.3 diff --git a/home/.config/jesseduffield/lazydocker/config.yml b/home/.config/jesseduffield/lazydocker/config.yml index 73e4f1b..66c5c3f 100644 --- a/home/.config/jesseduffield/lazydocker/config.yml +++ b/home/.config/jesseduffield/lazydocker/config.yml @@ -9,7 +9,7 @@ gui: - blue optionsTextColor: - blue - returnImmediately: true + returnImmediately: false wrapMainPanel: false reporting: "off" commandTemplates: diff --git a/home/.config/jesseduffield/lazygit/config.yml b/home/.config/jesseduffield/lazygit/config.yml index 740bcc4..79710e2 100644 --- a/home/.config/jesseduffield/lazygit/config.yml +++ b/home/.config/jesseduffield/lazygit/config.yml @@ -1,22 +1,25 @@ gui: - scrollheight: 2 - scrollpastbottom: true + scrollHeight: 2 + scrollPastBottom: true sidePanelWidth: 0.3333 + expandFocusedSidePanel: false + mainPanelSplitMode: 'flexible' # one of 'horizontal' | 'flexible' | 'vertical' theme: lightTheme: false - activebordercolor: + activeBorderColor: - red - bold - inactivebordercolor: + inactiveBorderColor: - blue - optionstextcolor: + optionsTextColor: - blue selectedLineBgColor: - bold - commitlength: + commitLength: show: true mouseEvents: true skipUnstageLineWarning: false + skipStashWarning: false git: paging: colorArg: always @@ -25,11 +28,27 @@ git: manualCommit: false skipHookPrefix: WIP autoFetch: true + overrideGpg: false + disableForcePushing: false update: method: prompt days: 14 -os: - opencommand: $EDITOR {{filename}} reporting: "off" confirmOnQuit: false -startuppopupversion: 1 +quitOnTopLevelReturn: true +disableStartupPopups: false +os: + opencommand: $EDITOR {{filename}} +customCommands: + - key: 'B' + command: 'hub browse' + context: 'global' + - key: 'B' + command: 'hub browse -- "tree/{{.SelectedLocalBranch.Name}}"' + context: 'localBranches' + - key: 'B' + command: 'hub browse -- "tree/{{.SelectedRemoteBranch.Name}}"' + context: 'remoteBranches' + - key: 'B' + command: 'hub browse -- "commit/{{.SelectedLocalCommit.Sha}}"' + context: 'commits' diff --git a/home/.config/zsh/alias.zsh b/home/.config/zsh/alias.zsh index 04ce240..8b76da1 100644 --- a/home/.config/zsh/alias.zsh +++ b/home/.config/zsh/alias.zsh @@ -104,8 +104,7 @@ es() { #### Save lf Dir ################################# lfcd () { tmp="$(mktemp)" - ~/repos/lf/lf-hiddenfiles -last-dir-path="$tmp" "$@" - # lf -last-dir-path="$tmp" "$@" + lf -last-dir-path="$tmp" "$@" if [ -f "$tmp" ]; then dir="$(cat "$tmp")" rm -f "$tmp" diff --git a/home/.zprofile b/home/.zprofile index 52a4545..5176427 100644 --- a/home/.zprofile +++ b/home/.zprofile @@ -10,7 +10,7 @@ export SHELL="zsh" export OPENER="$EDITOR" export VISUAL="$EDITOR" export PAGER="bat" -export GIT_PAGER="$PAGER" +export GIT_PAGER="delta" export MANPAGER="col -bx | $PAGER --language=man" #### XDG #########################################