# plugins keybinding ### NERDtree ```vim nnoremap :NERDTreeToggle nnoremap :NERDTreeFind ``` ### [Nerdcommenter](https://github.com/preservim/nerdcommenter) #### importent ones - `[count]cc` **|NERDCommenterComment|** Comment out the current line or text selected in visual mode. - `[count]cu` **|NERDCommenterUncomment|** Uncomments the selected line(s). - `[count]c` **|NERDCommenterToggle|** Toggles the comment state of the selected line(s). If the topmost selected line is commented, all selected lines are uncommented and vice versa. #### unimportant - `[count]cn` **|NERDCommenterNested|** Same as cc but forces nesting. - `[count]cm` **|NERDCommenterMinimal|** Comments the given lines using only one set of multipart delimiters. - `[count]ci` **|NERDCommenterInvert|** Toggles the comment state of the selected line(s) individually. - `[count]cs` **|NERDCommenterSexy|** Comments out the selected lines with a pretty block formatted layout. - `[count]cy` **|NERDCommenterYank|** Same as cc except that the commented line(s) are yanked first. - `c$` **|NERDCommenterToEOL|** Comments the current line from the cursor to the end of line. - `cA` **|NERDCommenterAppend|** Adds comment delimiters to the end of line and goes into insert mode between them. - **|NERDCommenterInsert|** Adds comment delimiters at the current cursor position and inserts between. Disabled by default. - `ca` **|NERDCommenterAltDelims|** Switches to the alternative set of delimiters. - `[count]cl` **|NERDCommenterAlignLeft**  - `[count]cb` **|NERDCommenterAlignBoth** Same as **|NERDCommenterComment|** except that the delimiters are aligned down the left side (`cl`) or both sides (`cb`).