This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I am a windows destkop user and Iphone user. and have come up with this workflow that is completley automatic and works really really well. | |
Pre-reqs. | |
- Git repo access | |
- Paid version of workign copy | |
- logseq | |
- Shortcuts app on Iphone | |
# Windows Side | |
You can use the https://github.com/logseq/git-auto to do your auto pushes on a schedule. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Installing Dependencies" | |
sudo yum install ncurses-devel -y | |
sudo yum install git -y | |
sudo yum autoremove -y vim | |
sudo yum groupinstall -y "Development Tools" | |
echo "Cloning VIM repo" | |
git clone https://github.com/vim/vim.git | |
cd vim/src | |
echo "Compiling Code" | |
make -j8 |