Questions tagged [vim-plugin]

The Vim text editor is extensible through plugins, which can be categorized into general utilities, color schemes, file type-specific settings, and syntax definitions.

If your question is not about programming, consider posting Vim related questions at the dedicated Vim Stack Exchange site.

The Vim editor can be extended through plugins, which are (at least partly) implemented in Vimscript.

Plugins may add a new color scheme, syntax highlighting for a new language, or settings and commands specific to a particular file type. But most plugins offer general add-on functionality that either enhance the use (like the various buffer and file explorers), or integrate with related tools (like revision control systems).

The main repository of Vim plugins is at vim.org. There's a prolific community of plugin authors and a wealth of different plugins. Some plugins are only available on sites like Github or Bitbucket.

1236 questions
-3
votes
1 answer

vimrc split bar movable

I took my vimrc from a friend and it has some changes to the split bar. How do I restore it to the default split bar? my .vim folder: here and .vimrc: """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Maintainer: amix the lucky…
prongs
  • 9,422
  • 21
  • 67
  • 105
-3
votes
1 answer

create syntax checker vim plugin for a new Programming language

I want to create a new vim syntax checker for a new programming language that is not used widely, first i tried to read the code of the follwing plugins neomake, syntastic , and Ale in order to understand how i can build my own syntax checker plugin…
-3
votes
1 answer

How to show buffernames in airline when several tabs are open?

I am using vim in a terminal and the airline plugin. When I open more than one tab, airline only shows tabs name and not buffer name anymore. Is there a way to show the name of the buffers in the current tab?
carlitux
  • 1,217
  • 10
  • 14
-3
votes
1 answer

"Press ENTER or type command to continue" in vim when enabling neocomplete plugin

As soon as I enable neocomplete in my .vimrc let g:neocomplcache_enable_at_startup = 1 I keep getting NORMAL › +1 ~2 -281 › 1:.vimrc 1:.vimrc 1:.vimrc Press ENTER or type command to continue Message every time I open a file. How…
CodeCrack
  • 5,253
  • 11
  • 44
  • 72
-5
votes
1 answer

What improvements can I do to my .vimrc to improve my experience in NeoVim?

Here's my .vimrc call plug#begin('~/.vim/plugged') Plug 'dart-lang/dart-vim-plugin' Plug 'natebosch/vim-lsc' Plug 'natebosch/vim-lsc-dart' Plug 'tpope/vim-sensible' Plug 'vim-airline/vim-airline' Plug 'w0rp/ale' Plug 'pearofducks/ansible-vim', {…
-5
votes
1 answer

Installing plugins in vim

Am running the command below:- sudo apt install curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim I get this error:- E: Command line option 'L' [from -fLo] is not understood in…
Victor_M
  • 1
  • 2
1 2 3
82
83