shakedown.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A community for live music fans with roots in the jam scene. Shakedown Social is run by a team of volunteers (led by @clifff and @sethadam1) and funded by donations.

Administered by:

Server stats:

279
active users

#neovim

0 posts0 participants0 posts today

#linux #neovim
I rarely use neovim these days, mainly because of it's Copy and Paste issue. I can't copy from neovim into system...
yet
At least that's what I researched. You can, but it seemed like you have to do buncha scrips here and there iirc, or idk...it sounded complicated to me at the time of reading it. So I just opted to use Kate instead


RE: https://gts.aylamz.me/users/aylamz/statuses/01JT6G2C2HCPK6JGPK1AFY3RQK

Avatar for aylamz
gts.aylamz.mePost by Aylam , @aylamz@gts.aylamz.meif you like the idea of (neo)vim but can't be bothered to configure it, try helix! it's a code editor that runs in the terminal and has vim-like keybindings but it comes already configured out of the box! like really, my helix config is 17 lines of .toml, which is just setting the theme, ena...

Alright, for my #neovim #python formatting/linting/etc, I've settled on Ruff. I have since removed flake*, pyright, autopep8, and isort. Alright, I am now feeling better with this setup. Way faster than my old school vim setup. Just wish the #arduino lsp worked properly, I think they are close to fixing that bug...

Does anyone have a valid #neovim config that can actually indent #python correctly? Treesitter is garbage, autoindent/smartindent is garbage. This wasn't an issue with vim. The amount of bug reports out there blaming python seems a bit crazy to me when neovim seems to be the only one with the issue.

Tried conform, it is annoying to my workflow. Treesitter works & doesn't work at the same. Just a mess, and I haven't found a valid solution yet :/

TIL about "digraphs" in (neo)vim. Need to insert, say, an en dash, which has a digraph of -N? In insert mode, ctrl-k, hypen, N. Want to check the digraph of a character already in your file? ga to show ascii, and look at the "Digr" notation. You would see e.g. "Digr =e" for the euro symbol.

:help digraphs
:help digraphs-default

Ok, this is confusing...

When I run #NeoVim from any terminal, it has a white background, just like my terminal.

When I run neovim from a terminal started by launcher like #rofi or #fuzzel, it has a gray background.

This is both in #Debian linux + #Swaywm and #OpenBSD + #i3wm.

So confuzzled.

Update:

Found a workaround by adding this to my init.vim:

"Set basic colors to override weird gray background when COLORTERM=truecolor
hi Normal guifg=#000000
hi Normal guibg=#ffffff