clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

update

+37 -13
+10
nvim-wp/micro-journal-scripts/README.md
··· 1 1 2 2 # Micro Journal Scripts 3 3 4 + ## Troubleshoot 5 + ### Size 6 + 7 + Only 3.2 GB was used, instead of full 32GB. 8 + ```sh 9 + sudo raspi-config 10 + ``` 11 + Then select `Advanced Options -> Expand Filesystem`. 12 + 13 + That extended the partition to 32 GB. 4 14 5 15 ## Prepare scripts for syncing 6 16
+27 -13
nvim-wp/micro-journal-scripts/install/neovim-latest.sh
··· 1 - sudo apt remove neovim 2 - sudo apt install ninja-build gettext cmake unzip curl 3 - git clone https://github.com/neovim/neovim 4 - cd neovim 5 - make CMAKE_BUILD_TYPE=RelWithDebInfo 6 - ls 7 - cd build 8 - cpack -G DEB 9 - # sudo dpkg -i nvim-linux64.deb 1 + # Make sure snapd is installed and up-to-date 2 + sudo apt update 3 + sudo apt install snapd 4 + sudo reboot # You'll need to reboot after installing snapd 5 + 6 + # After reboot, install the core snap 7 + sudo snap install core 8 + 9 + # Now install Neovim 10 + sudo snap install nvim --classic 11 + 12 + 13 + #------------- 14 + #does not work: 10 15 # sudo apt remove neovim 11 - sudo dpkg -i --force-overwrite nvim-linux64.deb 12 - nvim 16 + # sudo apt install ninja-build gettext cmake unzip curl 17 + # git clone https://github.com/neovim/neovim 18 + # cd neovim 19 + # make CMAKE_BUILD_TYPE=RelWithDebInfo 20 + # ls 21 + # cd build 22 + # cpack -G DEB 23 + # # sudo dpkg -i nvim-linux64.deb 24 + # # sudo apt remove neovim 25 + # sudo dpkg -i --force-overwrite nvim-linux64.deb 26 + # nvim 13 27 14 - sudo apt remove ninja-build gettext cmake 15 - sudo apt autoremove # This removes packages that were installed as dependencies but are no longer needed 28 + # sudo apt remove ninja-build gettext cmake 29 + # sudo apt autoremove # This removes packages that were installed as dependencies but are no longer needed