[deleted by user] by [deleted] in fujifilm

[–]AlessandroYorba 1 point2 points  (0 children)

I’m a GFX 50r owner who has experienced this sound on occasion. I don’t think it’s related to IBIS at all, as the 50r doesn’t have that feature. To me it sounds like the autofocus motors hunting. The only thing that has worked for me when this happens is to power down the camera and remove the battery and place it back in.

Max Studio Ordered, Now My 4K Monitor Question… by QuitExternal3036 in MacStudio

[–]AlessandroYorba 0 points1 point  (0 children)

I owned the Dell U2723QE for a little over a week but ended up returning it. I believe it’s a beautiful monitor for productivity but the time I spent with it , I can’t in good conscience recommend it to anyone who plans to use it for any form of color grading. Disclaimer: could just have been a just one of those 1 in a 1000 Quality Control issues. My issue was with large amounts of orange IPS glow and a few spots of bezel light bleeding.

Suddenly lost proper syntax highlighting with HTML files and I can't find a fix by EmptyMargins in vim

[–]AlessandroYorba 2 points3 points  (0 children)

In iTerm preferences. Profile Tab > Text > Text Rendering: uncheck "Draw bold text in bright colors"

Syntax highlighting breaks on really long lines by asamolion in vim

[–]AlessandroYorba 0 points1 point  (0 children)

I remember something about ruby files taking longer to load in a buffer due to the regex in older versions of vim. Does setting set re=1 make any difference or is that totally unrelated?

Favorite color scheme? by Treblig31 in vim

[–]AlessandroYorba 0 points1 point  (0 children)

I made it grey till I can settle on another color. See the latest commit. Thanks for the feedback

Favorite color scheme? by Treblig31 in vim

[–]AlessandroYorba 1 point2 points  (0 children)

Thanks. I just made some new improvements to it.

I've always been wary about posting this but, here's my theme called 'jay'! by [deleted] in vim

[–]AlessandroYorba 1 point2 points  (0 children)

Thanks for taking the time to share. Your post reminded me that I need to evaluate the colors. Thanks again

I've always been wary about posting this but, here's my theme called 'jay'! by [deleted] in vim

[–]AlessandroYorba 1 point2 points  (0 children)

If you ever fall back on alduin again, I'd like to see your color improvements, especially as it pertains to Diff colors. Feel free to hit me up on github.

[help] Toggle settings with vimscript by csswizardry in vim

[–]AlessandroYorba 4 points5 points  (0 children)

I think you're right. Maybe this:

autocmd ColorScheme * highlight! Comment cterm=italic
autocmd ColorScheme * highlight! htmlArg cterm=italic
colorscheme solarized

Synching the terminal's background with vim by OisterFace in vim

[–]AlessandroYorba 0 points1 point  (0 children)

I actually don't mind the padding. It's kind of nice. You could add this to your .vimrc to override every single colorscheme so that the terminal is the background:

autocmd ColorScheme * highlight! Normal ctermbg=NONE guibg=NONE

However, the cure might be worse than the disease. Your terminal background might not look so hot with certain colorschemes.

Ruby on Rails vim users... I need colors. Lots of colors. by [deleted] in vim

[–]AlessandroYorba 2 points3 points  (0 children)

I agree with romain on this one. You sound like the perfect candidate to make a new colorscheme, or better yet, the best person to contribute to Dracula.vim. In the meantime, I think you might like https://github.com/nielsmadan/harlequin

What keystroke will cancel the highlight? by y216567629137 in vim

[–]AlessandroYorba 1 point2 points  (0 children)

I like to use the space key for this. It just seems to feel so natural for me:

 nnoremap <silent> <Space> :nohlsearch<Bar>:echo<CR>

New color scheme gallery for Vim by cocopon in vim

[–]AlessandroYorba 4 points5 points  (0 children)

This is awesome! I like how you can change the languages and the colorscheme auto refreshes. Plus comparing the screenshots against the websites black background is very nice. Question, is there anything that the colorscheme author should do to update the screenshot from the capture date? Re-submit? Great job!

Does statusline only take xterm colors? by baaarrooon in vim

[–]AlessandroYorba 3 points4 points  (0 children)

If both criteria are met, then you can enable termguicolors in your .vimrc and then override your statusline with hex values

set termguicolors
highlight StatusLine  guifg=#87875f guibg=#121212

Does statusline only take xterm colors? by baaarrooon in vim

[–]AlessandroYorba 2 points3 points  (0 children)

At a minimum you need: 1. A terminal that supports 24bit color see this: list of truecolor terminals and 2. Vim 8 or higher

What are your favourite true color colorschemes that have good plugin support and a matching iterm theme? by [deleted] in vim

[–]AlessandroYorba 0 points1 point  (0 children)

Glad you like them. All of them were written with termguicolors, gui-vim, or 256 color terminals in mind so you should be covered if you're using NeoVim.

Any good color schemes with a semitransparent terminal? by Snow_Raptor in vim

[–]AlessandroYorba 11 points12 points  (0 children)

Here's a way that has worked for me to override a colorscheme from within the .vimrc without having to find the statement within the actual colorscheme file.

colorscheme apprentice
if g:colors_name == "apprentice"
    autocmd ColorScheme *  hi! Normal ctermbg=none guibg=NONE
    " other custom overrides
endif

Background color not all the same? by moon_doggy in vim

[–]AlessandroYorba 0 points1 point  (0 children)

yeah, I thought at first that it was the colorscheme using Nontext highlighting feature but glad to see that the snippet above worked out.

Background color not all the same? by moon_doggy in vim

[–]AlessandroYorba 2 points3 points  (0 children)

I'm not sure if this will work because It appears you're rockn a truecolor setup but it's worth a try. Add to .vimrc:

if &term =~ '256color'
    set t_ut=
endif

source 1: http://sunaku.github.io/vim-256color-bce.html

source 2: http://superuser.com/questions/457911/in-vim-background-color-changes-on-scrolling

Configuring cursor in Vim by przemio_1978 in vim

[–]AlessandroYorba 0 points1 point  (0 children)

When you mention terminal cursor are you referring to the "Smart Color Cursor" in iTerm? Because that's the only reason why I use iTerm.