# LazyVim Config **Repository Path**: MiyakoMeow/lazyvim-config ## Basic Information - **Project Name**: LazyVim Config - **Description**: My NeoVim Configuration with LazyVim. - **Primary Language**: Lua - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-08 - **Last Updated**: 2025-08-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # A LazyVim Configuration modified by MiyakoMeow ## Usage > Just Follow the instruction below, which is modified from [the original instruction](https://lazyvim.github.io/installation). ### Step 1. Make a backup of your current Neovim files: - Windows Powershell ```powershell Move-Item $env:LOCALAPPDATA\nvim $env:LOCALAPPDATA\nvim.bak ``` > - Optional > ```powershell > Move-Item $env:LOCALAPPDATA\nvim-data $env:LOCALAPPDATA\nvim-data.bak > ``` - Linux/MacOS ```bash mv ~/.config/nvim{,.bak} ``` > - Optional > ```bash > # optional but recommended > mv ~/.local/share/nvim{,.bak} > mv ~/.local/state/nvim{,.bak} > mv ~/.cache/nvim{,.bak} > ``` ### Step 2. Clone the config - Windows Powershell ```powershell git clone https://gitee.com/MiyakoMeow/lazyvim-config $env:LOCALAPPDATA\nvim ``` - Linux/MacOS ```bash git clone https://github.com/LazyVim/starter ~/.config/nvim ``` ### Step 3. (Optional) Remove the .git folder, so you can add it to your own repo later - Windows Powershell ```powershell Remove-Item $env:LOCALAPPDATA\nvim\.git -Recurse -Force ``` - Linux/MacOS ```bash rm -rf ~/.config/nvim/.git ``` ### Step 4. Start Neovim! ```bash nvim ``` Then, wait for plugin loading processes. ### Step 5. (Optional) update all plugins to the version from the lock file(`lazy-lock.json`) - Type in Neovim: ``` :Lazy restore ``` --- ## 💤 LazyVim (Original Repo) A starter template for [LazyVim](https://github.com/LazyVim/LazyVim). Refer to the [documentation](https://lazyvim.github.io/installation) to get started.