Compare commits

..

3 Commits

Author SHA1 Message Date
2f1e2a43e4 ue pazi (autojump) if available 2024-09-11 09:39:52 -04:00
7590018f31 use ruff as lsp 2024-09-11 09:34:27 -04:00
2423aa9c2f fix chezmoi diff pager 2024-09-11 09:34:24 -04:00
3 changed files with 5 additions and 4 deletions

View File

@ -3,4 +3,4 @@ merge:
command: vim command: vim
args: "-d" args: "-d"
diff: diff:
pager: "less" pager: "less -R"

View File

@ -7,9 +7,6 @@
export EDITOR=nvim export EDITOR=nvim
export SUDO_EDITOR=nvim export SUDO_EDITOR=nvim
# pager
export LESS=-R
# wayland # wayland
export MOZ_ENABLE_WAYLAND=1 export MOZ_ENABLE_WAYLAND=1
export QT_QPA_PLATFORM=wayland export QT_QPA_PLATFORM=wayland

View File

@ -71,3 +71,7 @@ bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down bindkey '^[[B' history-substring-search-down
bindkey -M vicmd 'k' history-substring-search-up bindkey -M vicmd 'k' history-substring-search-up
bindkey -M vicmd 'j' history-substring-search-down bindkey -M vicmd 'j' history-substring-search-down
if command -v pazi &>/dev/null; then
eval "$(pazi init zsh)" # or 'bash'
fi