clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update wp

+32 -1
+2
nvim-wp/README.md
··· 2 2 3 3 This config is Neovim configured to act as a classical wordprocessor to write text and especially markdown. 4 4 5 + Move this config to `~/.config/nvim` after you installed neovim (see `make install` in [/install](/install) directory). 6 + 5 7 6 8 7 9 ### Zen Mode
+25
nvim-wp/micro-journal-scripts/aliases.shrc
··· 1 + export EDITOR="nvim" 2 + 3 + alias vim=nvim 4 + alias v=nvim 5 + alias wp=nvim 6 + alias z=zoxide 7 + 8 + alias lg=lazygit 9 + 10 + 11 + # when closing ranger it will be at the path you were 12 + # alias ranger='ranger --choosedir=$HOME/.rangerdir; LASTDIR=`cat $HOME/.rangerdir`; cd "$LASTDIR"' 13 + 14 + # same as ranger above, leaves you at currrent directory when quitting 15 + function y() { 16 + > local tmp="$(mktemp -t "yazi-cwd.XXXXXX")" 17 + > yazi "$@" --cwd-file="$tmp" 18 + > if cwd="$(cat -- "$tmp")" && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]; then 19 + > > builtin cd -- "$cwd" 20 + > fi 21 + > rm -f -- "$tmp" 22 + } 23 + 24 + alias r=yazi 25 + alias ranger=yazi
+1 -1
nvim-wp/micro-journal-scripts/install/wp-packages.txt
··· 1 1 neovim 2 - yazi 2 + #yazi -> need to be installed manually 3 3 ripgrep 4 4 fd-find 5 5 fzf
+4
nvim-wp/micro-journal-scripts/install/yazi.sh
··· 1 + wget https://github.com/sxyazi/yazi/releases/download/v25.3.2/yazi-aarch64-unknown-linux-musl.zip 2 + unzip yazi-aarch64-unknown-linux-musl.zip 3 + sudo cp yazi-aarch64-unknown-linux-musl/yazi /usr/local/bin/ 4 + rm -r yazi-aarch64-unknown-linux-musl yazi-aarch64-unknown-linux-musl.zip