All Projects → Shougo → Deoppet.nvim

Shougo / Deoppet.nvim

Licence: other
The dark powered snippet plugin for neovim

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Deoppet.nvim

LunarVim
An IDE layer for Neovim with sane defaults. Completely free and community driven.
Stars: ✭ 9,296 (+4144.75%)
Mutual labels:  snippets, nvim
Ncm R
R autocompletion for Neovim and vim 8 📝 📊 ⚡️
Stars: ✭ 102 (-53.42%)
Mutual labels:  snippets, nvim
Nvcode
An IDE layer for Neovim with sane defaults. Completely free and community driven.
Stars: ✭ 6,714 (+2965.75%)
Mutual labels:  nvim, snippets
.dotfiles
🎆 Arch Linux with i3 / nvim / tmux / urxvt / zsh / ...
Stars: ✭ 167 (-23.74%)
Mutual labels:  nvim
Kommentary
Neovim commenting plugin, written in lua.
Stars: ✭ 172 (-21.46%)
Mutual labels:  nvim
Lualine.nvim
A blazing fast and easy to configure neovim statusline written in pure lua.
Stars: ✭ 198 (-9.59%)
Mutual labels:  nvim
30 Seconds Of Php
Short PHP code snippets for all your development needs
Stars: ✭ 2,461 (+1023.74%)
Mutual labels:  snippets
Vim Subversive
Vim plugin providing operator motions to quickly replace text
Stars: ✭ 168 (-23.29%)
Mutual labels:  nvim
Knowledge
Everything I know
Stars: ✭ 2,982 (+1261.64%)
Mutual labels:  snippets
Twf
Standalone tree view file explorer, inspired by fzf.
Stars: ✭ 196 (-10.5%)
Mutual labels:  nvim
Init.nvim
An Opinionated Neovim Config for the Minimalists
Stars: ✭ 194 (-11.42%)
Mutual labels:  nvim
Nvim Config
My custom Neovim configuration with full battery for Python, C++, Markdown, LaTeX and more...
Stars: ✭ 176 (-19.63%)
Mutual labels:  nvim
Spelunker.vim
Improved vim spelling plugin (with camel case support)!
Stars: ✭ 203 (-7.31%)
Mutual labels:  nvim
Nginx Admins Handbook
How to improve NGINX performance, security, and other important things.
Stars: ✭ 12,463 (+5590.87%)
Mutual labels:  snippets
Divi Resources
A curated list of awesome Divi resources
Stars: ✭ 213 (-2.74%)
Mutual labels:  snippets
Code Snippets Wp Speed Up
Code Snippets for WordPress and WooCommerce speed up, which can be imported into the plugin.
Stars: ✭ 168 (-23.29%)
Mutual labels:  snippets
Nvim Hs
Neovim API for Haskell plugins as well as the plugin provider
Stars: ✭ 208 (-5.02%)
Mutual labels:  nvim
Snippets
Atom snippets package
Stars: ✭ 191 (-12.79%)
Mutual labels:  snippets
Vscode Vlang
V Language extension for Visual Studio Code.
Stars: ✭ 190 (-13.24%)
Mutual labels:  snippets
Gitsigns.nvim
Git signs written in pure lua
Stars: ✭ 183 (-16.44%)
Mutual labels:  nvim

deoppet.nvim

Please read help for details.

Join the chat at https://gitter.im/Shougo/deoppet.nvim

Warning: This is alpha version! It is not intended to use for daily work.

Deoppet is the abbreviation of "dark powered neo-snippet". It provides the snippet expansion.

Installation

Note: deoppet requires Neovim(0.5.0+) with Python3. See requirements if you aren't sure whether you have this.

  1. Extract the files and put them in your Neovim directory (usually $XDG_CONFIG_HOME/nvim/).
  2. Execute the :UpdateRemotePlugins and restart Neovim.

Note: deoppet does not work in Vim8 environment.

For vim-plug

Plug 'Shougo/deoppet.nvim', { 'do': ':UpdateRemotePlugins' }

For dein.vim

call dein#add('Shougo/deoppet.nvim')

Requirements

deoppet requires Neovim with if_python3. If :echo has("python3") returns 1, then you're done; otherwise, see below.

You can enable Python3 interface with pip:

pip3 install --user pynvim

If you want to read the pynvim/python3 interface install documentation, you should read :help provider-python and the Wiki.

Note: Python3 must be enabled before updating remote plugins

If Deoppet was installed prior to Python support being added to Neovim, :UpdateRemotePlugins should be executed manually.

Screenshots

Configuration Examples

	call deoppet#initialize()
	call deoppet#custom#option('snippets',
	\ map(globpath(&runtimepath, 'neosnippets', 1, 1),
	\     "{ 'path': v:val }"))

	imap <C-k>  <Plug>(deoppet_expand)
	imap <C-f>  <Plug>(deoppet_jump_forward)
	imap <C-b>  <Plug>(deoppet_jump_backward)
	smap <C-f>  <Plug>(deoppet_jump_forward)
	smap <C-b>  <Plug>(deoppet_jump_backward)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].