Compare commits

..

2 Commits

Author SHA1 Message Date
e20bac869b use ruff as lsp 2024-09-11 09:30:46 -04:00
d42f6224f2 fix chezmoi diff pager 2024-09-11 09:29:29 -04:00
3 changed files with 4 additions and 5 deletions

View File

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

View File

@ -7,6 +7,9 @@
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,7 +71,3 @@ 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