docs: updated file tree and plugins section

This commit is contained in:
Folke Lemaitre 2023-01-04 14:02:09 +01:00
parent 392031dbe1
commit 485d4f0232
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -16,24 +16,26 @@ A starter template for Neovim using [lazy.nvim](https://github.com/folke/lazy.nv
<pre> <pre>
~/.config/nvim ~/.config/nvim
├── lua ├── lua
│   └── lazyvim
│   ├── config │   ├── config
│   │   ├── autocmds.lua │   │   ├── autocmds.lua
│   │   ├── icons.lua
│   │   ├── keymaps.lua │   │   ├── keymaps.lua
│   │   ├── lazy.lua │   │   ├── lazy.lua
│   │   └── options.lua │   │   ├── options.lua
│   └── plugins │   │   └── settings.lua
│   ├── lsp │   ├── plugins
│   │   ├── format.lua │   │   ├── lsp
│   │   ├── init.lua │   │   │   ├── format.lua
│   │   ├── keymaps.lua │   │   │   ├── init.lua
│   │   └── servers.lua │   │   │   ├── keymaps.lua
│   ├── api.lua │   │   │   └── servers.lua
│   ├── coding.lua │   │   ├── coding.lua
│   ├── colorscheme.lua │   │   ├── colorscheme.lua
│   ├── editor.lua │   │   ├── config.lua
│   ├── treesitter.lua │   │   ├── editor.lua
│   ├── ui.lua │   │   ├── treesitter.lua
│   │   ├── ui.lua
│   │   └── util.lua
│   └── util.lua │   └── util.lua
├── init.lua ├── init.lua
├── lazy-lock.json ├── lazy-lock.json
@ -49,6 +51,7 @@ A starter template for Neovim using [lazy.nvim](https://github.com/folke/lazy.nv
- [alpha-nvim](https://github.com/goolord/alpha-nvim) - [alpha-nvim](https://github.com/goolord/alpha-nvim)
- [catppuccin](https://github.com/catppuccin/nvim) - [catppuccin](https://github.com/catppuccin/nvim)
- [cmp-buffer](https://github.com/hrsh7th/cmp-buffer) - [cmp-buffer](https://github.com/hrsh7th/cmp-buffer)
- [cmp-emoji](https://github.com/hrsh7th/cmp-emoji)
- [cmp-nvim-lsp](https://github.com/hrsh7th/cmp-nvim-lsp) - [cmp-nvim-lsp](https://github.com/hrsh7th/cmp-nvim-lsp)
- [cmp-path](https://github.com/hrsh7th/cmp-path) - [cmp-path](https://github.com/hrsh7th/cmp-path)
- [cmp_luasnip](https://github.com/saadparwaiz1/cmp_luasnip) - [cmp_luasnip](https://github.com/saadparwaiz1/cmp_luasnip)
@ -63,9 +66,12 @@ A starter template for Neovim using [lazy.nvim](https://github.com/folke/lazy.nv
- [LuaSnip](https://github.com/L3MON4D3/LuaSnip) - [LuaSnip](https://github.com/L3MON4D3/LuaSnip)
- [mason-lspconfig.nvim](https://github.com/williamboman/mason-lspconfig.nvim) - [mason-lspconfig.nvim](https://github.com/williamboman/mason-lspconfig.nvim)
- [mason.nvim](https://github.com/williamboman/mason.nvim) - [mason.nvim](https://github.com/williamboman/mason.nvim)
- [mini.ai](https://github.com/echasnovski/mini.ai)
- [mini.bufremove](https://github.com/echasnovski/mini.bufremove) - [mini.bufremove](https://github.com/echasnovski/mini.bufremove)
- [mini.comment](https://github.com/echasnovski/mini.comment) - [mini.comment](https://github.com/echasnovski/mini.comment)
- [mini.indentscope](https://github.com/echasnovski/mini.indentscope)
- [mini.pairs](https://github.com/echasnovski/mini.pairs) - [mini.pairs](https://github.com/echasnovski/mini.pairs)
- [mini.surround](https://github.com/echasnovski/mini.surround)
- [neo-tree.nvim](https://github.com/nvim-neo-tree/neo-tree.nvim) - [neo-tree.nvim](https://github.com/nvim-neo-tree/neo-tree.nvim)
- [neoconf.nvim](https://github.com/folke/neoconf.nvim) - [neoconf.nvim](https://github.com/folke/neoconf.nvim)
- [neodev.nvim](https://github.com/folke/neodev.nvim) - [neodev.nvim](https://github.com/folke/neodev.nvim)
@ -76,12 +82,17 @@ A starter template for Neovim using [lazy.nvim](https://github.com/folke/lazy.nv
- [nvim-cmp](https://github.com/hrsh7th/nvim-cmp) - [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)
- [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig) - [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig)
- [nvim-notify](https://github.com/rcarriga/nvim-notify) - [nvim-notify](https://github.com/rcarriga/nvim-notify)
- [nvim-spectre](https://github.com/windwp/nvim-spectre)
- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter) - [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
- [nvim-treesitter-textobjects](https://github.com/nvim-treesitter/nvim-treesitter-textobjects)
- [nvim-ts-context-commentstring](https://github.com/JoosepAlviste/nvim-ts-context-commentstring) - [nvim-ts-context-commentstring](https://github.com/JoosepAlviste/nvim-ts-context-commentstring)
- [nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons) - [nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons)
- [persistence.nvim](https://github.com/folke/persistence.nvim)
- [plenary.nvim](https://github.com/nvim-lua/plenary.nvim) - [plenary.nvim](https://github.com/nvim-lua/plenary.nvim)
- [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim) - [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)
- [todo-comments.nvim](https://github.com/folke/todo-comments.nvim)
- [tokyonight.nvim](https://github.com/folke/tokyonight.nvim) - [tokyonight.nvim](https://github.com/folke/tokyonight.nvim)
- [trouble.nvim](https://github.com/folke/trouble.nvim)
- [vim-illuminate](https://github.com/RRethy/vim-illuminate) - [vim-illuminate](https://github.com/RRethy/vim-illuminate)
- [vim-startuptime](https://github.com/dstein64/vim-startuptime) - [vim-startuptime](https://github.com/dstein64/vim-startuptime)
- [which-key.nvim](https://github.com/folke/which-key.nvim) - [which-key.nvim](https://github.com/folke/which-key.nvim)