No description
Find a file
2026-04-08 14:11:27 -06:00
lua feat: initial neovim config (NvChad + custom markdown journaling) 2026-04-08 14:03:03 -06:00
.gitignore feat: initial neovim config (NvChad + custom markdown journaling) 2026-04-08 14:03:03 -06:00
.stylua.toml feat: initial neovim config (NvChad + custom markdown journaling) 2026-04-08 14:03:03 -06:00
init.lua feat: initial neovim config (NvChad + custom markdown journaling) 2026-04-08 14:03:03 -06:00
lazy-lock.json feat: initial neovim config (NvChad + custom markdown journaling) 2026-04-08 14:03:03 -06:00
LICENSE feat: initial neovim config (NvChad + custom markdown journaling) 2026-04-08 14:03:03 -06:00
README.md Edited thge README.md file. 2026-04-08 14:11:27 -06:00

Usage on other computers

Backup anything that might already be there (just in case) mv ~/.config/nvim ~/.config/nvim.bak 2>/dev/null || true

Clone fresh git clone git@forgejo.yourserver.com:yourusername/nvim-config.git ~/.config/nvim

Enter the folder and let Lazy bootstrap everything cd ~/.config/nvim nvim-config

Tips

  • After you change anything on one machine (init.lua, a snippet, a new plugin, etc.), just do:
git add .
git commit -m "chore: update markdown folding / add new snippet"
git push
  • On the other machines: git pull inside ~/.config/nvim (or even better, add a small alias: alias nvimup='cd ~/.config/nvim && git pull').
  • If you ever add new snippets or templates, they live in lua/custom/snippets/ → they will automatically travel with the repo.
  • lazy-lock.json is committed → every machine gets the exact same plugin versions.