A Neovim integration for television, a fast, portable, and hackable fuzzy finder.
- Neovim 0.5+
television(executable astv) installed on your system.
You can configure television.nvim using the setup function:
require("television").setup({
tv_command = "tv", -- default
window = {
width = 0.8, -- default
height = 0.8, -- default
border = "rounded", -- default
},
mappings = {
t = {
-- default mappings to close the window
["<C-[>"] = "<C-\\><C-n>:q<CR>",
["<Esc>"] = "<C-\\><C-n>:q<CR>",
},
},
})