Starter template for LazyVim
Go to file
Maxim Egorov f35af318af changed README.md 2024-04-25 13:58:17 +05:00
lua fix 2024-04-25 13:21:49 +05:00
.gitignore fix gitignore 2024-04-25 13:14:07 +05:00
.neoconf.json refactor: sumneko -> lua_ls (#18) 2023-02-27 10:29:06 +01:00
LICENSE docs: added readme and license 2023-01-07 11:00:23 +01:00
README.md changed README.md 2024-04-25 13:58:17 +05:00
init.lua docs: init.lua 2023-01-07 10:53:23 +01:00
lazy-lock.json fix gitignore 2024-04-25 13:14:07 +05:00
lazyvim.json init 2024-04-25 11:34:41 +05:00
stylua.toml feat: initial commit 2023-01-07 10:20:36 +01:00

README.md

💤 LazyVim

A starter template for LazyVim. Refer to the documentation to get started.

Requirements

  • Neovim >= 0.9.0 (needs to be built with LuaJIT)
  • Git >= 2.19.0 (for partial clones support)
  • a Nerd Font (v3.0 or greater) (optional, but needed to display some icons)
  • lazygit (optional)
  • a C compiler for nvim-treesitter. See here
  • for telescope.nvim (optional)
  • a terminal that support true color and undercurl:

🛠️ Installation

Linux/MacOS

Install the LazyVim

  • Make a backup of your current Neovim files:

    # required
    mv ~/.config/nvim{,.bak}
    
    # optional but recommended
    mv ~/.local/share/nvim{,.bak}
    mv ~/.local/state/nvim{,.bak}
    mv ~/.cache/nvim{,.bak}
    
  • Clone the LazyVim

    git clone https://github.com/13maximegorov/LazyVim ~/.config/nvim
    
  • Remove the .git folder, so you can add it to your own repo later

    rm -rf ~/.config/nvim/.git
    
  • Start Neovim!

    nvim
    
Windows

Install the LazyVim with PowerShell

  • Make a backup of your current Neovim files:

    # required
    Move-Item $env:LOCALAPPDATA\nvim $env:LOCALAPPDATA\nvim.bak
    
    # optional but recommended
    Move-Item $env:LOCALAPPDATA\nvim-data $env:LOCALAPPDATA\nvim-data.bak
    
  • Clone the LazyVim

    git clone https://github.com/13maximegorov/LazyVim $env:LOCALAPPDATA\nvim
    
  • Remove the .git folder, so you can add it to your own repo later

    Remove-Item $env:LOCALAPPDATA\nvim\.git -Recurse -Force
    
  • Start Neovim!

    nvim