DEV Community

Cover image for A Note of Command-T Installation with Vim-Plug
Takuzen Toh
Takuzen Toh

Posted on

A Note of Command-T Installation with Vim-Plug

The following codes are all of what I need to write to install Command-T as a user of vim-plug.

# config.lua
### In the block of vim.call
Plug 'wincent/command-t'

### In the outside of vim.call
### declare to use Lua
require('wincent.commandt').setup()
Enter fullscreen mode Exit fullscreen mode
$ cd /path/to/plugged/command-t/lua/wincent/commandt/lib
$ make
Enter fullscreen mode Exit fullscreen mode

P.S.
My instant feedback of this plugin:

  • Cannot search with ultimate pass?
    • From /home, it take like about 1s to show the search bar
  • How to write less everytime I call (default is |:CommandT|

Top comments (0)