4513ECHO / ddu.vim

Dark deno-powered UI framework for neovim/Vim8

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ddu.vim

Dark deno-powered UI framework for neovim/Vim

If you don't want to configure plugins, you don't have to use the plugin. It does not work with zero configuration. You can use other plugins.

Doc

Please read help for details.

NOTE: I have created Japanese article for ddu.vim.

Ddu is the abbreviation of "dark deno-powered UI". It provides an extensible and asynchronous UI framework for neovim/Vim.

The development is supported by github sponsors. Thank you!

Introduction

I have chosen denops.vim framework to create new plugin. Because denops.vim is better than neovim Python interface.

  • Easy to setup
  • Minimal dependency
  • Stability
  • neovim/Vim compatibility
  • Speed
  • Library
  • Easy to hack

Screenshots

Please see: Shougo#10

ddu.vim

Install

NOTE: Ddu.vim requires Neovim (0.8.0+ and of course, latest is recommended) or Vim 9.0.1276+. See requirements if you aren't sure whether you have this.

Requirements

Ddu.vim requires both Deno and denops.vim.

NOTE: Ddu.vim does not include any extra plugins. You must install them you want manually. You can search ddu plugins from here.

For vim-plug

call plug#begin()

Plug 'vim-denops/denops.vim'
Plug 'Shougo/ddu.vim'

" Install your UIs

" Install your sources

" Install your filters

" Install your kinds

" Install your columns

call plug#end()

For dein.vim

call dein#begin()

call dein#add('vim-denops/denops.vim')
call dein#add('Shougo/ddu.vim')

" Install your UIs

" Install your sources

" Install your filters

" Install your kinds

" Install your columns

call dein#end()

About

Dark deno-powered UI framework for neovim/Vim8

License:MIT License


Languages

Language:TypeScript 89.4%Language:Vim Script 10.3%Language:Makefile 0.3%