0%

vim 使用插件篇

代码自动补全

参考

字体

可到这里下载powerline字体, 我使用的是UbuntuMono, 配合vim-airline使用。

Ack - 用于检索关键字

1
brew install ack
  1. Neovim

  2. Vim Plug to install extensions

  3. coc.nvim for autocompletion and imports and type definitions

    1. ctrl-space autocompletion
    2. gd goto definition
    3. F2 rename
    4. K show tooltip
    5. created coc-pref.json
    6. :CocInstall coc-snippets
      1. :CocCommand snippets.editSnippets
  4. Gruvbox theme

  5. yats for typescript syntax

  6. nerdtree for file tree

    1. auto open
    2. install fira font

    Plug ‘tsony-tsonev/nerdtree-git-plugin’ Plug ‘tiagofumo/vim-nerdtree-syntax-highlight’ Plug ‘ryanoasis/vim-devicons’

  7. nerdcommenter

    1. cmd / comment out code
    2. (mapped to ++ so cmd / can be mapped)
  8. ctrlp.vim for fuzzy file finder

    1. cmd p open
  9. cmd keybindings required iTerm2 remappings

  10. vim-gitgutter tells you what lines you modified

参考自:https://www.notion.so/Vim-Setup-0586a2ae8466442daa293ad1297bdcd0