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
2 answers

how to add include path for language servers in coc-settings.json file?

I am using neovim plugin "coc-nvim", as the IntelliSense tool for C/C++. as I know this plugin is actually a client of language servers like ccls, clangd and cquery. I have all of these language servers installed on my system and configured them to…
AMIR REZA SADEQI
  • 409
  • 2
  • 5
  • 13
3
votes
0 answers

UltiSnips not work in vim:E887: Sorry,this command is disabled, the Python's site module could not be loaded

OS: Windows 10 vim version: vim8.1 Plugin manager: vim-plug I have used vim-plug to install the following plugins successfully: I used Anaconda3 to create a new environment called VimEnv and equipped with the 32bit python2.7 version. In cmd, I…
yahoo
  • 293
  • 1
  • 4
  • 10
3
votes
0 answers

How to get tpope/vim-rails gf command to work with SpaceVim

I am using SpaceVim as Ruby on Rails IDE and installed the tpope/vim-rails plugin. However, the other commands like :Econtroller, :Emodel, :find, commands are working just fine but the gf command provided by this plugin is not working in…
3
votes
2 answers

How to set vim highlight ColorColumn guideline transparency?

I have set :highlight ColorColumn ctermbg=1, but the guideline is too much dimmed. How to increase the vim guideline transparency, so I can see better which characters it has behind it? Alternatively, the setcolumn guideline could be like in…
Evandro Coan
  • 8,560
  • 11
  • 83
  • 144
3
votes
1 answer

vim plugin directories priority

On Debian plugins are in /usr/share/vim/vim80 but also in users home ~/.vim. How are conflicts handled? Let's say there is /usr/share/vim/vim80/ftplugin/tex.vim and there is ~/.vim/ftplugin/tex.vim, which gets loaded? Or what would be the correct…
atapaka
  • 1,172
  • 4
  • 14
  • 30
3
votes
1 answer

Eclipse JDT LS & Gradle - Resource Exception "Invalid project description"

Summary I've been trying to get Eclipse's JDT LS (JLS) working with vim-lsp (in Neovim), but have been unsuccessful in synchronising the JLS with a Gradle project. I am, unfortunately, constrained to Windows. The Problem Using this configuration…
Priddles
  • 201
  • 1
  • 2
  • 6
3
votes
1 answer

E117: Unknown function: ale#Lint

I try upgrading my .vimrc file. When I open up a Rails application I'm working on I get the following error. rails_app/config/environments/development.rb 2,3 Top Error…
Steven Aguilar
  • 3,107
  • 5
  • 39
  • 89
3
votes
1 answer

Why is apple vim compiled WITHOUT conceal feature?

I noticed this fact trying to use Yggdroot/indentLine plugin, which requires conceal feature. $ /usr/bin/vim --version VIM - Vi IMproved 8.0 (2016 Sep 12, compiled Nov 29 2017 18:37:46) Included patches: 1-503, 505-680, 682-1283 Compiled by…
Akko Yukky
  • 41
  • 1
  • 2
3
votes
1 answer

vim ALE error highlighting not changing

I am using a vim pluggin called ALE. But the error and warning highlighting does not go with my theme. So I am trying to change the colour or even switch it off, but nothing seems to work. None of the following commands work when set in .vimrc let…
Narayana
  • 323
  • 3
  • 16
3
votes
1 answer

How can I make vim-plug recognize a local project?

I am trying to make a plug in for vim-plug. At the moment I am not sure how to load a local directory. I have ran in my root directory: mkdir vim-test cd vim-test git init mkdir syntax I then went into my ~/.config/nvim/init.vim file and I have: "…
Dair
  • 15,910
  • 9
  • 62
  • 107
3
votes
1 answer

Any shell command to directly let dein.vim to install plugins?

Any shell command to directly let dein.vim to install plugins? I want to set up my own (Neo)Vim environment on a docker container. It would be nice if I could install vim plugins on only Dockerfile (without executing nvim).
yokoiwa
  • 97
  • 1
  • 5
3
votes
1 answer

How to rename 'Quickfix' title powered by setloclist builtin function?

I have a custom vim script, which navigate through files using setloclist builtin function. How to rename 'Quickfix' title right on the bottom of navigation file list and above command line?
Illia Danko
  • 555
  • 4
  • 10
3
votes
3 answers

Vim, installing pathogen Windows

I tried to install vim plugin on my Windows OS but it don't work. fist I'm going to show you my vim directoris architecture then to show you my _vimrc.vim file: C:\Program Files (x86)\Vim > 17/07/2017 16:15 vim80 17/07/2017 …
CallMarl
  • 524
  • 4
  • 15
3
votes
1 answer

Vim multiple cursors invisible after changing colorscheme

I've been using vim with multiple cursors for a few years now, but just today, while tinkering with my colorscheme, I found that the cursors weren't always showing up. When they're visually selecting something, they use the color for the Visual…
Zoey Hewll
  • 4,788
  • 2
  • 20
  • 33
3
votes
3 answers

Are plugins loaded by vimrc or afterwards?

I'm confused about the order in which Vim loads plugin files, and seem to be finding mixed answers online. Some answers seem to suggest that vimrc is loaded before plugins, while others suggest that they are loaded during the sourcing of vimrc, at…
Kvass
  • 8,294
  • 12
  • 65
  • 108