blob: 44b5df144e11d5954a15d6d135075f85595c8f8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# My Neovim Config
Based on the neovim config by [ChristianChiarulli](https://github.com/LunarVim/Neovim-from-scratch/tree/03-plugins).
# Dependencies
```
neovim >= 6.0.0
neovim-web-devicons-git
xsel
fzf
fnm and node for lsp
```
# Structure
```
.
└── lua
├── config # Plugin configs.
│ └── lsp # LSP related configs.
│ └── settings # Server specific settings.
├── install.lua # Packer installer.
├── plugins.lua # Table of all plugins.
└── settings # Neovim settings.
```
## TODO
-[ ] autocmd
-[ ] cmp check if anything is missing
|