This repository contains all the necessary configurations for the Neovim application. It provides a comprehensive set of configuration files and plugins to enhance your Neovim experience.
To use the configurations from this repository, you have two options:
- Clone the repository:
git clone https://github.com/senajoaop/nvim-config.git
- Copy all the files from the cloned repository to the Neovim configuration folder on your operating system.
- For Windows:
- Open a command prompt or PowerShell.
- Run the following command to navigate to the Neovim configuration folder:
cd %USERPROFILE%\AppData\Local\nvim
- Copy the files from the cloned repository to the current directory:
xcopy /E /Y path\to\cloned\repository\* .
- For Linux distributions:
- Open a terminal.
- Run the following command to navigate to the Neovim configuration folder:
cd ~/.config/nvim
- Copy the files from the cloned repository to the current directory:
cp -R path/to/cloned/repository/* .
- For Windows:
- Clone the repository:
git clone https://github.com/senajoaop/nvim_config.git
- Copy only the
new_version/nvim
folder from the cloned repository to the Neovim configuration folder on your operating system.- For Windows:
- Open a command prompt or PowerShell.
- Run the following command to navigate to the Neovim configuration folder:
cd %USERPROFILE%\AppData\Local\nvim
- Copy the
new_version\nvim
folder from the cloned repository to the current directory:xcopy /E /Y path\to\cloned\repository\new_version\nvim .
- For Linux distributions:
- Open a terminal.
- Run the following command to navigate to the Neovim configuration folder:
cd ~/.config/nvim
- Copy the
new_version/nvim
folder from the cloned repository to the current directory:cp -R path/to/cloned/repository/new_version/nvim/* .
- For Windows:
The Neovim configuration folder is typically located in the following directories on different operating systems:
- For Windows:
%USERPROFILE%\AppData\Local\nvim
- For Linux distributions:
~/.config/nvim
Please note that the paths provided above are default locations. If you have a customized Neovim configuration folder, please adjust the commands accordingly.
Contributions to this repository are welcome! If you have any improvements, suggestions, or bug fixes, please feel free to contribute by following these steps:
- Fork the repository.
- Create a new branch:
git checkout -b feature/your-feature-name
- Commit your changes:
git commit -m "Add your commit message"
- Push the branch to your forked repository:
git push origin feature/your-feature-name
- Open a pull request to the main repository.
Please ensure that your contributions align with the existing coding style and best practices.