GitHub - techne98/emotive.nvim: An emoji picker for Telescope in Neovim

1 min read Original article ↗

Emotive 😎

Emotive is an emoji picker extension for Telescope.

Users can use the Telescope UI to find emojis by name and copy them into their current buffer.

emotive.demo.mov

Installation

This plugin requires you to have Telescope and its required dependencies installed.

Add the following code to your Lazy plugin spec table:

{
  "techne98/emotive.nvim",
  config = false
}

Using Emotive

You can open the emoji picker in command-line mode, for example with :Telescope emotive emojis.

Example custom keybind:

vim.keymap.set('n', '<leader>fe', require('telescope').extensions.emotive.emojis)

Contributing

If you notice that an emoji is missing, please consider adding it to the emoji_db.lua file.

Please do the following:

  1. Fork the project
  2. Create a branch, e.g. git checkout -b my-new-feature
  3. Commit some changes
  4. Open a pull request

Thanks!