penglei / nvim.config

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

My personal nvim configuration

大部分配置都来源于 nvimdots,裁剪了自己不需要的插件、快捷键,增加了自己习惯的键位。

各种插件的使用方法

🚀 Surround usage

The three "core" operations of add/delete/change can be done with the keymaps ys{motion}{char}, ds{char}, and cs{target}{replacement}, respectively. For the following examples, * will denote the cursor position:

    Old text                    Command         New text
--------------------------------------------------------------------------------
    surr*ound_words             ysiw)           (surround_words)
    *make strings               ys$"            "make strings"
    [delete ar*ound me!]        ds]             delete around me!
    remove <b>HTML t*ags</b>    dst             remove HTML tags
    'change quot*es'            cs'"            "change quotes"
    <b>or tag* types</b>        csth1<CR>       <h1>or tag types</h1>
    delete(functi*on calls)     dsf             function calls

About


Languages

Language:Lua 100.0%