nvim/README.md

43 lines
1.0 KiB
Markdown
Raw Normal View History

2023-01-22 22:20:39 +08:00
<!-- @import "[TOC]" {cmd="toc" depthFrom=1 depthTo=6 orderedList=false} -->
2023-01-22 17:20:38 +08:00
# 从零开始打造属于自己的nvim
2023-02-11 23:07:44 +08:00
## 如何在不同的系统安装
### arch系
```bash
sudo pacman -S neovim nodejs npm
```
### ubuntu系
```bash
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get update
sudo apt-get install -y nodejs
sudo apt-get install neovim
```
2023-01-22 20:24:58 +08:00
## 文件结构
```
2023-10-01 00:45:00 +08:00
.
├── init.lua
├── install.sh
├── lua
│   ├── Filetype
│   │   ├── c.lua
│   │   ├── markdown.lua
│   │   └── vue.lua
│   ├── G.lua
│   ├── normal
│   │   ├── keymap.lua
│   │   ├── normal.lua
│   │   ├── options.lua
│   │   └── plug.lua
│   └── Plugin
│   ├── coc.lua
│   ├── coc-settings.json
│   ├── Imchange.lua
│   ├── lualine.lua
│   ├── NERDTree.lua
│   └── treesitter.lua
└── README.md
2023-01-22 20:24:58 +08:00
```