Skip to content

Commit

Permalink
fix: small changes for delta, aliases, lazygit
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtabrams committed Oct 28, 2020
1 parent e2a7370 commit 337d06e
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 14 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion home/.config/jesseduffield/lazydocker/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gui:
- blue
optionsTextColor:
- blue
returnImmediately: true
returnImmediately: false
wrapMainPanel: false
reporting: "off"
commandTemplates:
Expand Down
37 changes: 28 additions & 9 deletions home/.config/jesseduffield/lazygit/config.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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'
3 changes: 1 addition & 2 deletions home/.config/zsh/alias.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion home/.zprofile
Original file line number Diff line number Diff line change
Expand Up @@ -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 #########################################
Expand Down

0 comments on commit 337d06e

Please sign in to comment.