Obsidian forum thread: https://forum.obsidian.md/t/plugin-for-bullet-threading/37317/22
Add these CSS files in Appearance settings.
Changelog:
- 2024-08-15
- separate versions for mouse hover and active line (keyboard focus)
Obsidian forum thread: https://forum.obsidian.md/t/plugin-for-bullet-threading/37317/22
Add these CSS files in Appearance settings.
Changelog:
## Set ENV variables for path abbreviations H (Home) and P (Projects) | |
export H="$HOME" # ~ | |
export P="$H/projects" | |
## Generate SSH Key for GitHub and add to SSH Agent | |
ssh-keygen -t ed25519 -C "[email protected]" -f "$H/.ssh/mykey" | |
eval "$(ssh-agent -s)" | |
## Show public key |
I hope the tutorial has been useful to you. If it was kindly leave a like and a comment, and consider subscribing and turning on subscription notifications. I intend to make more videos like this on the topics mentioned before as well as on other spacemacs topic like magit (git plugin), large scale refactoring, and a number of other things. Thank you so much for watching.
Note: a great reference can be had here http://spacemacs.org/layers/+emacs/org/README.html
Show that each outline has it’s associated “text” under it
#!/bin/sh | |
# Script for installing tmux & htop on systems where you don't have root access. | |
# Inspired by https://gist.github.com/ryin/3106801 | |
# tmux will be installed in $HOME/local/bin. | |
# htop will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e |