DEV Community

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

Posted on

1

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)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay