vim-colors | Modern rewrite of Vim 's default colorschemes | Plugin library
kandi X-RAY | vim-colors Summary
kandi X-RAY | vim-colors Summary
Modern rewrite of Vim's default colorschemes.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of vim-colors
vim-colors Key Features
vim-colors Examples and Code Snippets
Community Discussions
Trending Discussions on vim-colors
QUESTION
Hello I open file in NERDTree using t but new files is always there. Before I use vim in folder. that mean when I located in ex: app folder, I run vim without type specific files to edit. when I open files in nerd tree, new file [No Name] is always there. is anyone know how to fix it?
this is my init.vim
...ANSWER
Answered 2021-Oct-10 at 11:40To fix it, navigate to the tab which has [No Name]
open in it, and close that tab
QUESTION
i use parrot security as my daily distro. its mate terminal is transparent so is vim .but i wanted to get auto complete and used some plugins.auto complete window appears to be in pink which looks really ugly in semi transparent black background.i changed the theme and it was fixed but so was gone vim transparency .
in short word (1)i have to keep the default (2)i have to keep transparent vim (3)i have to change the auto complete window from pink to semi transparent black
here is my init.vimrc
...ANSWER
Answered 2021-Jun-09 at 19:27If you are using neovim there is an option called :h pumblend
which can be used to change the transparency of the popup menu.
Are you sure gruvbox
caused your vim to lose transparency? I am not sure if vim is able to change a terminal emulator's transparency. I or someone else might be able to advise you better if you post pictures of what has changed.
QUESTION
I have referred to this question and I tried many of the changes suggested and it worked for a moment. I updated my Ubuntu machine to latest version and it broke my tmux. lose vim colorscheme in tmux mode
Currently everything works perfectly outside of tmux but the vim in tmux is having problems.
My vimrc :
...ANSWER
Answered 2021-Mar-24 at 14:25I recently had this problem myself. When comparing your config files to mine, I have a few more lines than you.
tmux.conf:
QUESTION
I am using gnuplot to display data and I usually edit the files in vim. I would like to have some sort of syntax highlighting if it was possible. I tried to install several plugins with vim plug for gnuplot but I can't seem to make it work. here is the contents of my .vimrc
file:
ANSWER
Answered 2021-Feb-21 at 22:33- Vim assigns the
gnuplot
filetype to*.gpi
files out of the box. - Syntax highlighting for gnuplot is also built-in.
Therefore…
Your two
FiletType
autocommands can't work as-is. They should match ongnuplot
, notgp
:
QUESTION
I 'm working on MacOS Catalina and I am using vim 8.2
The only profile set up in my iterm2
is the Default
one.
which has been set up to used a slightly customized solarized theme as depicted below
I am now opening vim (which has also been set up to use its counterpart solarized colorscheme)
My question is, why when I am opening the :terminal
in vim, this opens in black background (I don't think there even exists a profile with such setting)
ANSWER
Answered 2020-Dec-10 at 14:51This will happen when you have Vim running with 'termguicolors'
on. (You can confirm it and see where it's being enabled with :verb set tgc?
.) Same as when running in a GUI (not the terminal), it will tell Vim to use 24-bit colors, and use the color scheme full RGB color specifications, rather than use the terminal color palette.
In that situations, Vim's colors get completely detached from those of the terminal where Vim is running, so Vim's built-in terminal no longer has access to the actual terminal colors.
You can set specific colors to use in Vim's built-in terminal with the g:terminal_ansi_colors
variable (see :help g:terminal_ansi_colors
for details.)
Alternatively, disabling 'termguicolors'
should work as well. Assuming the Vim color scheme has been built in a way that will use the terminal color scheme to reproduce the same colors, it might not have other side effects in how Vim colors otherwise look.
QUESTION
ANSWER
Answered 2020-Sep-27 at 15:56The Pydiction plugin has not been maintained since 2014. YouCompleteMe, when configured correctly, should be able to do everything that Pydiction is able to do, and is still getting regular commits. You might consider just not using Pydiction.
Additionally, it's not usually a good idea to copy someones .vimrc
wholesale, simply for reasons like this. Not saying that you can't, but if you do, you should take the time to read through the help documentation to make sure you understand what everything does.
However, if you really want to use Pydiction, a solution follows:
Solution:The plugin vim-scripts/Pydiction
doesn't set g:pydiction_location
by default. Since you're using Vundle with the default location, the included complete-dict
should be located at ~/.vim/bundle/Pydiction/complete-dict
. You'll need to set g:pydiction_location
:
QUESTION
ANSWER
Answered 2020-Sep-20 at 22:54The listchars feature might have been enabled.
Try disabling it with :set nolist
QUESTION
I made :wincmd h
shortcut to h
, and mapleader is to me
but When I do h
, I feel quite long delay to execute this action,
so I searched commands about h
by :map h
and
I found that I have serveral commands start with h
like below
ANSWER
Answered 2020-Sep-07 at 15:26The mappings that include h
as a prefix will cause this interference. Vim will wait for a timeout or additional keypress before executing your h
mapping, since it wants to check whether you meant to press one of the longer mappings...
The easiest way to fix this is set alternate mappings for the vim-gitgutter commands. If you set up different mappings for those in your vimrc, vim-gitgutter itself will not create its mappings which are causing the interference.
The vim-gitgutter README suggests using g
as an alternative prefix for these:
To set your own mappings for these, for example if you prefer
g
-based maps:
QUESTION
I installed solarized colorscheme and configure things in vimrc
However, on my mac, it looks like:
After I added a line let g:solarized_termcolors=256
in vimrc, it looks a little better:
But it's still not the color on solarized, on a linux machine(without let g:solarized_termcolors=256
in vimrc), it's like this:
So how can I make the colors on mac vim the same as on linux?
...ANSWER
Answered 2020-Jun-30 at 04:09I didn't work for me either, I didn't spend too much time on researching why it wouldn't work, and turn to this one: https://github.com/lifepillar/vim-solarized8
And it works for me, try if it's working for you :)
BTW, be aware it does fall back to an approximate palette based theme if your terminal is not supporting true colors, I'm using windows terminal and it works fine, you actually don't have to put "set termguicolors" in your .vimrc. Hope it helps
QUESTION
I am not sure which plugin generated this behavior, whenever I type closed bracket right after opening bracket, a <++> will be appended right after. Below is my plugin list. Not sure what goes wrong, I could not use the latex editing features of the plugin.
In general, I would like to ask, is there a way to check the compatibility of each plugin?
...ANSWER
Answered 2020-Feb-10 at 11:06This is a feature of vim-latexsuite.
The <++>
(with an optional comment between the two +
) is a placeholder, which can be jumped to (without leaving insert mode) via . So you can type in between
(
and )
whatever you like, then move to after the closing parenthesis via , without leaving insert mode.
This feature can be disabled by setting g:Imap_UsePlaceHolders
to 0
. (Documentation) Personally, though, I can only recommend this little bit, in LaTeX as well as elsewhere -- it can be mighty useful, especially in combination with macros.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install vim-colors
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page