From c4766d401034ca7eeda13d10b605b9ccd8dcbcd2 Mon Sep 17 00:00:00 2001 From: Prabhat Maurya Date: Sun, 15 Jun 2025 07:25:54 +0000 Subject: [PATCH] Add Home --- Home.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 Home.md diff --git a/Home.md b/Home.md new file mode 100644 index 0000000..b029ea7 --- /dev/null +++ b/Home.md @@ -0,0 +1,47 @@ + +Steps to replicte neovim set up on diferent system. + +## 1. Clone the Repository + +First, clone your Neovim configuration repository to the new system: + +```bash +git clone ~/.config/nvim +``` + +## 2. Install Packer + +Ensure Packer is installed by running: + +```bash +git clone --depth 1 https://github.com/wbthomason/packer.nvim \ +~/.local/share/nvim/site/pack/packer/start/packer.nvim +``` + +## 3. Install Plugins + +Open Neovim and run the Packer install command to install all the plugins defined in your `packer` setup: + +```vim +:PackerInstall +``` + +## 4. Install Dependencies + +Make sure that all external tools or dependencies required by your plugins are installed on the new system. For example: + +```bash +sudo apt install lua-format black fzf +``` + +## 5. Verify Configuration + +Open Neovim and verify that everything is working as expected. Check if plugins are loaded correctly and if the configurations (like key mappings and plugin settings) are functioning as intended. + +## 6. Update Plugins (Optional) + +If you want to update your plugins to their latest versions, you can run: + +```vim +:PackerUpdate +```