Go to file
2023-10-03 01:12:10 +08:00
lua update 2023-10-03 01:12:10 +08:00
.gitignore . 2023-10-01 09:21:32 +08:00
init.lua update 2023-10-02 22:05:38 +08:00
install update 2023-10-02 22:05:38 +08:00
README.md :: 2023-10-01 00:45:00 +08:00

从零开始打造属于自己的nvim

如何在不同的系统安装

arch系

sudo pacman -S neovim nodejs npm

ubuntu系

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

文件结构

.
├── 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