All Projects → noahfrederick → vim-neovim-defaults

noahfrederick / vim-neovim-defaults

Licence: other
Neovim defaults for Vim

Programming Languages

Vim Script
2826 projects

Neovim defaults for Vim

This tiny plug-in sets options to Neovim's default values where they differ from Vim's defaults. Intended for use by those who share configuration between Vim and Neovim and don't want to set redundant options in their nvimrc.

See also Sensible.vim for additional sensible defaults.

If you use a plug-in manager, such as vim-plug, you can load it conditionally:

if !has('nvim')
  Plug 'noahfrederick/vim-neovim-defaults'
endif

Or using Pathogen:

let g:pathogen_disabled = []

if has('nvim')
  call add(g:pathogen_disabled, 'vim-neovim-defaults')
endif

You must first source the plug-in before overriding one or more of these defaults in your vimrc:

runtime! plugin/neovim_defaults.vim

" ...

Otherwise you may place overrides in after/plugin/neovim_defaults.vim.

Credits and License

Copyright © Noah Frederick. Distributed under the same terms as Vim itself. See :help license.

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].