From 965f5cf9defbfbce165020d9472e2d2e2396e13b Mon Sep 17 00:00:00 2001 From: QQ <1770362456@qq.com> Date: Sun, 22 Jan 2023 20:24:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0README=E7=9A=84=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 17 +++++++++++++++++ init.lua | 1 - 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5489624..09a6ef8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,21 @@ # 从零开始打造属于自己的nvim +## 文件结构 +``` +. +├── coc-settings.json +├── init.lua +├── lazy-lock.json +├── lua +│   ├── core +│   │   ├── keymap.lua +│   │   ├── options.lua +│   │   └── plug.lua +│   └── Plugin +│   ├── coc.lua +│   ├── lualine.lua +│   └── nerdcommenter.lua +└── README.md +``` ## vim-surround插件 `"Hello world"` 1.使用 `cs”‘` 效果如下: diff --git a/init.lua b/init.lua index 8067d00..5bbdcd6 100644 --- a/init.lua +++ b/init.lua @@ -5,7 +5,6 @@ require('core.options') require('core.keymap') require('Plugin.coc') require('Plugin.lualine') -require('Plugin.surround') require('Plugin.nerdcommenter')