Neovim config for the lazy https://lazyvim.github.io/
Find a file
2023-01-02 17:36:11 +01:00
lua/lazyvim feat(util): telescope helper 2023-01-02 17:36:11 +01:00
.neoconf.json feat: initial commit 2022-12-30 17:30:52 +01:00
init.lua refactor: move everything under lazyvim 2023-01-01 14:33:56 +01:00
lazy-lock.json chore: updates 2023-01-01 13:15:41 +01:00
LICENSE docs: added LICENSE 2023-01-01 09:48:09 +01:00
README.md docs: updated docs 2023-01-01 09:56:44 +01:00
stylua.toml feat: initial commit 2022-12-30 17:30:52 +01:00

LazyVim

A starter template for Neovim using lazy.nvim

image

Todo

  • documentation
  • treesitter auto-install seems broken. Switch to ensure_installed instead?
  • list all plugins in readme
  • test all-the-things

File Structure

~/.config/nvim
├── lua
│   ├── config
│   │   ├── autocmds.lua
│   │   ├── icons.lua
│   │   ├── keymaps.lua
│   │   ├── lazy.lua
│   │   └── options.lua
│   └── plugins
│       ├── lsp
│       │   ├── format.lua
│       │   ├── init.lua
│       │   ├── keymaps.lua
│       │   └── servers.lua
│       ├── api.lua
│       ├── coding.lua
│       ├── colorscheme.lua
│       ├── editor.lua
│       ├── treesitter.lua
│       ├── ui.lua
│       └── util.lua
├── init.lua
├── lazy-lock.json
├── LICENSE
├── README.md
└── stylua.toml

Plugins