Add Home
commit
c4766d4010
1 changed files with 47 additions and 0 deletions
47
Home.md
Normal file
47
Home.md
Normal file
|
|
@ -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 <repository-url> ~/.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
|
||||
```
|
||||
Loading…
Reference in a new issue