Neovim config for the lazy https://lazyvim.github.io/
Find a file
2023-01-06 22:48:09 +01:00
.github ci: templates 2023-01-04 21:56:53 +01:00
doc chore(build): auto-generate vimdoc 2023-01-06 05:49:51 +00:00
lua/lazyvim feat(alpha): added shortcut to restore session 2023-01-06 21:43:05 +01:00
.gitignore ci: templates 2023-01-04 21:56:53 +01:00
.neoconf.json feat: initial commit 2022-12-30 17:30:52 +01:00
init.lua refactor: move mapleader to options. no longer needed to be set in init 2023-01-04 07:56:26 +01:00
lazy-lock.json chore: updated lazy.nvim 2023-01-06 22:48:09 +01:00
LICENSE docs: added LICENSE 2023-01-01 09:48:09 +01:00
README.md docs: updated file tree and plugins section 2023-01-04 14:02:09 +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
│   └── lazyvim
│       ├── config
│       │   ├── autocmds.lua
│       │   ├── keymaps.lua
│       │   ├── lazy.lua
│       │   ├── options.lua
│       │   └── settings.lua
│       ├── plugins
│       │   ├── lsp
│       │   │   ├── format.lua
│       │   │   ├── init.lua
│       │   │   ├── keymaps.lua
│       │   │   └── servers.lua
│       │   ├── coding.lua
│       │   ├── colorscheme.lua
│       │   ├── config.lua
│       │   ├── editor.lua
│       │   ├── treesitter.lua
│       │   ├── ui.lua
│       │   └── util.lua
│       └── util.lua
├── init.lua
├── lazy-lock.json
├── LICENSE
├── README.md
└── stylua.toml

Plugins